diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2019-05-12 04:04:29 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2019-05-12 04:09:55 +0200 |
commit | 52899bebc4f4a52c2e966e288fc1040aaf966375 (patch) | |
tree | 209e591bbd361a4eda1b9508bb45ebf15459012d | |
parent | 8a243a04d79cc2195f50ca778f3a0f1a75e56b52 (diff) | |
download | systemd-52899bebc4f4a52c2e966e288fc1040aaf966375.tar.gz |
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.
-rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..961b7920d6 --- /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' |