From 983e925239983bc116c33da38e339344706c9bf0 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Thu, 15 Aug 2019 14:47:19 -0700 Subject: [PATCH] Remove azure pipelines (#342) --- azure-pipelines.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index c9adff0..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,38 +0,0 @@ -trigger: -- master - -pool: - vmImage: 'Ubuntu-16.04' - -strategy: - maxParallel: 2 - matrix: - Stable: - variant: stable - Rolling: - variant: rolling - -steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.7' - architecture: 'x64' - - task: PythonScript@0 - inputs: - scriptSource: 'filepath' - scriptPath: 'build.py' - arguments: $(variant) - - task: PythonScript@0 - inputs: - scriptSource: 'filepath' - scriptPath: 'test.py' - arguments: $(variant) - - task: Bash@3 - inputs: - filePath: 'tests/test.sh' - - task: PythonScript@0 - inputs: - scriptSource: 'filePath' - scriptPath: '.travis/deploy.py' - condition: and(eq(variables['Build.SourceBranch'], 'refs/heads/master'), - eq(variables['variant'], 'rolling'))