diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-02 15:37:09 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-02 15:37:09 +0100 |
commit | 6983898b21a2e5aa2c6ec72d38e4c3d52dfa9968 (patch) | |
tree | b13af608a04adaf330f3beab4e8b7b6e66f06fb5 /.azure-pipelines.yml | |
parent | d4a1862719d7e16125364a62cb6b090ccd866fa7 (diff) | |
download | curl-6983898b21a2e5aa2c6ec72d38e4c3d52dfa9968.tar.gz |
Azure Pipelines: initial CI setup
[skip ci]
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' |