From 213b11905e1950739a6b49db8037fe01de85b78f Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 24 Feb 2020 15:14:03 -0800 Subject: [PATCH] Added Web MVC build pipeline --- build/aro/web-mvc/azure-pipelines.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build/aro/web-mvc/azure-pipelines.yml diff --git a/build/aro/web-mvc/azure-pipelines.yml b/build/aro/web-mvc/azure-pipelines.yml new file mode 100644 index 000000000..9dd54dab1 --- /dev/null +++ b/build/aro/web-mvc/azure-pipelines.yml @@ -0,0 +1,23 @@ +variables: + ProjectName: WebMVC + OpenShiftProject: development + AppName: webmvc + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/Web/WebMVC/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)