Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion azure/common/apigee-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ parameters:
- name: python_version
type: string
default: "3.8"
- name: agent_pool
type: string
default: "AWS-ECS"

jobs:
- job: build
displayName: Build & Test
timeoutInMinutes: 30
pool:
name: 'AWS-ECS'
name: ${{ parameters.agent_pool }}
workspace:
clean: all
variables:
Expand Down
3 changes: 3 additions & 0 deletions azure/common/apigee-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ parameters:
- name: python_version
type: string
default: "3.8"
- name: agent_pool
type: string
default: "AWS-ECS"


extends:
Expand Down
4 changes: 3 additions & 1 deletion azure/common/deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ parameters:
- jinja_templates
- name: python_version
type: string
- name: agent_pool
type: string

stages:
- stage: ${{ parameters.stage_name }}
Expand All @@ -80,7 +82,7 @@ stages:
- deployment: deploy
environment: ${{ parameters.environment }}
pool:
name: 'AWS-ECS'
name: ${{ parameters.agent_pool }}
workspace:
clean: all
strategy:
Expand Down
3 changes: 2 additions & 1 deletion azure/common/deploy-stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ parameters:
type: boolean
- name: python_version
type: string

- name: agent_pool
type: string


stages:
Expand Down
2 changes: 2 additions & 0 deletions azure/common/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ parameters:
type: string
- name: python_version
type: string
- name: agent_pool
type: string

stages:
- ${{ if eq(parameters.environment, 'manual-approval') }}:
Expand Down
2 changes: 2 additions & 0 deletions azure/common/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ parameters:
default: false
- name: python_version
type: string
- name: agent_pool
type: string

stages:
- ${{ if eq(parameters.environment, 'manual-approval') }}:
Expand Down