From ef4d32256772990f26775dc1531367ba41ad0b0a Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 22 Feb 2020 22:19:57 -0800 Subject: [PATCH] Added the mobileshoppingagg build pipeline --- .../aro/mobileshoppingagg/azure-pipelines.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build/aro/mobileshoppingagg/azure-pipelines.yml diff --git a/build/aro/mobileshoppingagg/azure-pipelines.yml b/build/aro/mobileshoppingagg/azure-pipelines.yml new file mode 100644 index 000000000..3e2695a2e --- /dev/null +++ b/build/aro/mobileshoppingagg/azure-pipelines.yml @@ -0,0 +1,23 @@ +variables: + ProjectName: Mobile.Shopping.HttpAggregator + OpenShiftProject: development + AppName: mobileshoppingagg + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/ApiGateways/Mobile.Bff.Shopping/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)