diff options
author | Matt Clay <matt@mystile.com> | 2022-11-29 22:35:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 22:35:53 +0100 |
commit | cda16cc5e9aa8703fb4e1ac0a0be6b631d9076cc (patch) | |
tree | 0a84f8b7bff9cad558c0c988b5ce3e8119d4037a /.azure-pipelines | |
parent | Fix repr(Task) to check action when testing for a meta task (#79464) (diff) | |
download | ansible-cda16cc5e9aa8703fb4e1ac0a0be6b631d9076cc.tar.xz ansible-cda16cc5e9aa8703fb4e1ac0a0be6b631d9076cc.zip |
ansible-test - Improve container management. (#78550)
See changelogs/fragments/ansible-test-container-management.yml for details.
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/azure-pipelines.yml | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index cdb66c3e41..1b8085eddc 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -84,7 +84,7 @@ stages: - stage: Remote dependsOn: [] jobs: - - template: templates/matrix.yml + - template: templates/matrix.yml # context/target parameters: targets: - name: macOS 12.0 @@ -104,7 +104,7 @@ stages: groups: - 1 - 2 - - template: templates/matrix.yml + - template: templates/matrix.yml # context/controller parameters: targets: - name: macOS 12.0 @@ -119,6 +119,23 @@ stages: - 3 - 4 - 5 + - template: templates/matrix.yml # context/controller (ansible-test container management) + parameters: + targets: + - name: Alpine 3.16 + test: alpine/3.16 + - name: Fedora 36 + test: fedora/36 + - name: RHEL 8.6 + test: rhel/8.6 + - name: RHEL 9.0 + test: rhel/9.0 + - name: Ubuntu 20.04 + test: ubuntu/20.04 + - name: Ubuntu 22.04 + test: ubuntu/22.04 + groups: + - 6 - stage: Docker dependsOn: [] jobs: |