From 3a9702f99e43556ef60847d1de89b28e303f1a01 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 21 Jan 2019 17:01:41 +0000 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..c60e32985 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +trigger: + - docker-devops + +pool: + vmImage: "Ubuntu-16.04" + +variables: + buildConfiguration: "Release" + imageName: "FilterLists:$(Build.BuildId)" + +steps: + - script: | + docker-compose build + docker login -u $(dockerId) -p $pswd + docker-compose push --ignore-push-failures + env: + pswd: $(dockerPassword)