From d649a47352a05d6dc2af91a0dd66e7cd6c125be7 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Tue, 25 Feb 2020 10:54:40 -0800 Subject: [PATCH] Added Webhooks Client build pipeline --- build/aro/webhooks-client/azure-pipelines.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build/aro/webhooks-client/azure-pipelines.yml diff --git a/build/aro/webhooks-client/azure-pipelines.yml b/build/aro/webhooks-client/azure-pipelines.yml new file mode 100644 index 000000000..d781d2130 --- /dev/null +++ b/build/aro/webhooks-client/azure-pipelines.yml @@ -0,0 +1,23 @@ +variables: + ProjectName: WebhookClient + OpenShiftProject: development + AppName: webhooksclient + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/Web/WebhookClient/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)