From a84e4601a883cfe76f0aae22a8bf35baae7847fe Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 23 Feb 2020 23:02:19 -0800 Subject: [PATCH] Added WebStatus build pipeline --- build/aro/webstatus/azure-pipelines.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/webstatus/azure-pipelines.yml diff --git a/build/aro/webstatus/azure-pipelines.yml b/build/aro/webstatus/azure-pipelines.yml new file mode 100644 index 000000000..92bea97d6 --- /dev/null +++ b/build/aro/webstatus/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: WebStatus + OpenShiftProject: development + AppName: webstatus + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/BuildingBlocks/* + - src/Web Apps/WebStatus/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)