summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-03-27 10:04:36 -0700
committerGitHub <noreply@github.com>2023-03-27 10:04:36 -0700
commit93d0253292dc2e66432d96f047b66200a2d2e35b (patch)
tree78ce35a345cd4ca36f3a2467dd491d4f334c80e0
parent0fd88717c953b92ed8a50495d55e630eb5d59166 (diff)
downloadansible-93d0253292dc2e66432d96f047b66200a2d2e35b.tar.gz
Use variable instead of container resource in AZP (#80299)
-rw-r--r--.azure-pipelines/azure-pipelines.yml7
-rw-r--r--.azure-pipelines/templates/coverage.yml2
-rw-r--r--.azure-pipelines/templates/test.yml2
3 files changed, 4 insertions, 7 deletions
diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml
index fc68e9864b..425d6d0bbe 100644
--- a/.azure-pipelines/azure-pipelines.yml
+++ b/.azure-pipelines/azure-pipelines.yml
@@ -30,11 +30,8 @@ variables:
value: .azure-pipelines/commands/entry-point.sh
- name: fetchDepth
value: 500
-
-resources:
- containers:
- - container: default
- image: quay.io/ansible/azure-pipelines-test-container:3.0.0
+ - name: defaultContainer
+ value: quay.io/ansible/azure-pipelines-test-container:3.0.0
pool: Standard
diff --git a/.azure-pipelines/templates/coverage.yml b/.azure-pipelines/templates/coverage.yml
index 469ed5e65d..b518df280c 100644
--- a/.azure-pipelines/templates/coverage.yml
+++ b/.azure-pipelines/templates/coverage.yml
@@ -6,7 +6,7 @@
jobs:
- job: Coverage
displayName: Code Coverage
- container: default
+ container: $[ variables.defaultContainer ]
workspace:
clean: all
steps:
diff --git a/.azure-pipelines/templates/test.yml b/.azure-pipelines/templates/test.yml
index d6a4d5a8b0..3df72632a8 100644
--- a/.azure-pipelines/templates/test.yml
+++ b/.azure-pipelines/templates/test.yml
@@ -11,7 +11,7 @@ jobs:
- ${{ each job in parameters.jobs }}:
- job: test_${{ replace(replace(replace(replace(job.test, '/', '_'), '.', '_'), '-', '_'), '@', '_') }}
displayName: ${{ job.name }}
- container: default
+ container: $[ variables.defaultContainer ]
workspace:
clean: all
steps: