Added build files for Basket API and Identity API

This commit is contained in:
Tim McCarthy 2020-01-25 12:50:02 -08:00
parent 54877d8129
commit bc792cf55e
5 changed files with 39 additions and 2 deletions

View File

@ -0,0 +1,16 @@
name: 'Basket-API-Build'
variables:
ProjectName: Basket.API
trigger:
branches:
include:
- master
- dev
paths:
include:
- src/BuildingBlocks/*
- src/Services/Basket/*
jobs:
- template: ../webapp-build.yml
parameters:
ProjectName: $(ProjectName)

View File

@ -13,4 +13,4 @@ trigger:
jobs:
- template: ../webapp-build.yml
parameters:
ProjectName: Basket.API
ProjectName: $(ProjectName)

View File

@ -0,0 +1,16 @@
name: 'Identity-API-Build'
variables:
ProjectName: Identity.API
trigger:
branches:
include:
- master
- dev
paths:
include:
- src/BuildingBlocks/*
- src/Services/Catalog/*
jobs:
- template: ../webapp-build.yml
parameters:
ProjectName: $(ProjectName)

View File

@ -1,7 +1,7 @@
parameters:
ProjectName: ''
jobs:
- job: Restore_Build_Publish
- job: Restore_Build_Publish_Job
pool:
name: 'Hosted Ubuntu 1604'
steps:

5
build/aro/readme.md Normal file
View File

@ -0,0 +1,5 @@
# Azure DevOps build definitions
This folder contains the Azure DevOps build definitions in YAML format. Each folder contains one `azure-pipelines.yml` that contains the build definition for one microservice (usually a Docker image, but some microservices generates more than one Docker image).
For more information about YAML builds read the [Azure DevOps documentation](https://docs.microsoft.com/azure/devops/pipelines/get-started-yaml?view=azure-devops).