summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-03-27 12:42:28 -0700
committerGitHub <noreply@github.com>2023-03-27 12:42:28 -0700
commitf302197463f47b63b7b475b7cc921b80f52eb25b (patch)
tree8b4abe1ece3a766b5b0139b810755376c44d925e
parentcb0a7670df15a2813e8fd3879e64a3aed518193c (diff)
downloadansible-f302197463f47b63b7b475b7cc921b80f52eb25b.tar.gz
[stable-2.12] Use variable instead of container resource in AZP (#80299) (#80318)
(cherry picked from commit 93d0253292dc2e66432d96f047b66200a2d2e35b)
-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 472f42eda9..64c26d500e 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: