From 05de47e57691088703413efbb070786ef2fb5b56 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 22 Feb 2020 13:58:28 -0800 Subject: [PATCH] Added Webhooks API build pipeline --- build/aro/webhooks-api/azure-pipelines.yml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/webhooks-api/azure-pipelines.yml diff --git a/build/aro/webhooks-api/azure-pipelines.yml b/build/aro/webhooks-api/azure-pipelines.yml new file mode 100644 index 000000000..ee62a8e1b --- /dev/null +++ b/build/aro/webhooks-api/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: Webhooks.API + OpenShiftProject: development + AppName: webhooksapi + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/BuildingBlocks/* + - src/Services/Webhooks/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)