diff options
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml new file mode 100644 index 000000000..01d0e48b9 --- /dev/null +++ b/.azure-pipelines.yml @@ -0,0 +1,20 @@ +# 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 + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: ./buildconf && ./configure + displayName: 'Run configure' + +- script: make + displayName: 'make' + +- script: test + displayName: 'make check' |