From 4bc48d750394b151fe32ba0f8a2ffa35e2217fab Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 23 Feb 2020 22:21:48 -0800 Subject: [PATCH] Added the ordering-signalrhub build pipeline --- .../ordering-signalrhub/azure-pipelines.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build/aro/ordering-signalrhub/azure-pipelines.yml diff --git a/build/aro/ordering-signalrhub/azure-pipelines.yml b/build/aro/ordering-signalrhub/azure-pipelines.yml new file mode 100644 index 000000000..470564bfb --- /dev/null +++ b/build/aro/ordering-signalrhub/azure-pipelines.yml @@ -0,0 +1,24 @@ +variables: + ProjectName: Ordering.SignalrHub + OpenShiftProject: development + AppName: orderingsignalrhub + OpenShiftServiceConnection: 'OpenShift on ARO' +trigger: + branches: + include: + - master + - dev + paths: + include: + - src/BuildingBlocks/* + - src/Services/Ordering/* +jobs: +- template: ../webapp-build-artifacts.yml + parameters: + ProjectName: $(ProjectName) +- template: ../webapp-container-build.yml + parameters: + ProjectName: $(ProjectName) + OpenShiftProject: $(OpenShiftProject) + AppName: $(AppName) + OpenShiftServiceConnection: $(OpenShiftServiceConnection)