Set up CI with Azure Pipelines

This commit is contained in:
Collin M. Barrett 2019-01-21 17:01:41 +00:00
parent dd43c1189e
commit 3a9702f99e

17
azure-pipelines.yml Normal file
View file

@ -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)