From 0d088c289814b7032dc5f66a64ed112754389ebd Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 23 Feb 2020 21:28:25 -0800 Subject: [PATCH] Added webshoppingagg build pipeline --- build/aro/webshoppingagg/azure-pipelines.yml | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/webshoppingagg/azure-pipelines.yml diff --git a/build/aro/webshoppingagg/azure-pipelines.yml b/build/aro/webshoppingagg/azure-pipelines.yml new file mode 100644 index 000000000..4645da792 --- /dev/null +++ b/build/aro/webshoppingagg/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: Web.Shopping.HttpAggregator + PublishOutputDirectory: aggregator + OpenShiftProject: development + AppName: webshoppingagg + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/ApiGateways/Web.Bff.Shopping/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(PublishOutputDirectory) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)