From 6983898b21a2e5aa2c6ec72d38e4c3d52dfa9968 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 2 Dec 2019 15:37:09 +0100 Subject: Azure Pipelines: initial CI setup [skip ci] --- .azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .azure-pipelines.yml 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' -- cgit v1.2.3