From 2265261a3cbcab2b26c0330c14ecbee19f11493a Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Wed, 6 Oct 2021 19:05:20 +0200 Subject: [PATCH] chore(misc): remove outdated azure pipelines configuration --- azure-pipelines.yml | 47 --------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 70e8c3b..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,47 +0,0 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - -trigger: -- master - -jobs: - - job: Linux - pool: - vmImage: 'ubuntu-latest' - steps: - - script: | - sudo apt -y update - sudo apt install -y libxtst-dev libx11-dev libxdo3 libxdo-dev - displayName: Install library dependencies - - template: ci/test.yml - - template: ci/build-linux.yml - - template: ci/deploy.yml - - - job: UbuntuDEB - pool: - vmImage: 'ubuntu-latest' - steps: - - script: | - sudo docker build -t espanso-ubuntu . -f ci/ubuntu/Dockerfile - sudo docker run --rm -v "$(pwd):/shared" espanso-ubuntu espanso/ci/ubuntu/build_deb.sh - displayName: Setting up docker - - template: ci/deploy.yml - - - job: macOS - pool: - vmImage: 'macOS-10.14' - steps: - - template: ci/test.yml - - template: ci/build-macos.yml - - template: ci/deploy.yml - - template: ci/publish-homebrew.yml - - - job: Windows - pool: - vmImage: 'windows-2019' - steps: - - template: ci/test.yml - - template: ci/build-win.yml - - template: ci/deploy.yml \ No newline at end of file