From 772dff2c2158c05335d30681d54d810856446270 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 22 Feb 2020 13:12:50 -0800 Subject: [PATCH] Added Locations API build pipeline --- build/aro/locations-api/azure-pipelines.yml | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/locations-api/azure-pipelines.yml diff --git a/build/aro/locations-api/azure-pipelines.yml b/build/aro/locations-api/azure-pipelines.yml new file mode 100644 index 000000000..3ffde6859 --- /dev/null +++ b/build/aro/locations-api/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: Locations.API + OpenShiftProject: development + AppName: locationsapi + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/BuildingBlocks/* + - src/Services/Location/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)