From 52899bebc4f4a52c2e966e288fc1040aaf966375 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Sun, 12 May 2019 04:04:29 +0200 Subject: [PATCH] tests: hook up the repository to Azure Pipelines The idea is to move a couple of stages from Travis CI (which has been overloaded since I added the "FuzzBuzz" stage) to Azure Pipelines. --- azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000000..961b7920d63 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,11 @@ +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: | + set -e + sudo ./travis-ci/managers/xenial.sh + displayName: 'This is where it gets darker' -- 2.47.3