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