From e37bafc48947f13891a8bd1a79f66db1838e71d9 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Tue, 25 Feb 2020 11:51:43 -0800 Subject: [PATCH] Added Ordering Background Tasks build pipeline --- .../azure-pipelines.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/ordering-backgroundtasks/azure-pipelines.yml diff --git a/build/aro/ordering-backgroundtasks/azure-pipelines.yml b/build/aro/ordering-backgroundtasks/azure-pipelines.yml new file mode 100644 index 000000000..16e4de6fc --- /dev/null +++ b/build/aro/ordering-backgroundtasks/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: Ordering.BackgroundTasks + OpenShiftProject: development + AppName: orderingbackgroundtasks + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/BuildingBlocks/* + - src/Services/Ordering/Ordering.BackgroundTasks/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)