Browse Source

Added Ordering Background Tasks build pipeline

pull/1259/head
Tim McCarthy 5 years ago
parent
commit
e37bafc489
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      build/aro/ordering-backgroundtasks/azure-pipelines.yml

+ 24
- 0
build/aro/ordering-backgroundtasks/azure-pipelines.yml View File

@ -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)

Loading…
Cancel
Save