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)