Remove azure pipelines (#342)

This commit is contained in:
Abhilash Raj
2019-08-15 14:47:19 -07:00
committed by GitHub
parent 5251eff047
commit 983e925239

View File

@@ -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'))