trigger: batch: true branches: include: - main - stable-* pr: autoCancel: true branches: include: - main - stable-* schedules: - cron: 0 9 * * * displayName: Nightly always: true branches: include: - main - stable-* variables: - name: checkoutPath value: ansible_collections/ansible/posix - name: coverageBranches value: main - name: pipelinesCoverage value: coverage - name: entryPoint value: tests/utils/shippable/shippable.sh - name: fetchDepth value: 0 resources: containers: - container: default image: quay.io/ansible/azure-pipelines-test-container:1.9.0 pool: Standard stages: ## Docker - stage: Docker_devel displayName: Docker devel dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: devel/linux/{0}/1 targets: - name: CentOS 7 test: centos7 - name: Fedora 35 test: fedora35 - name: Fedora 36 test: fedora36 - stage: Docker_2_13 displayName: Docker 2.13 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.13/linux/{0}/1 targets: - name: CentOS 7 test: centos7 - name: Fedora 35 test: fedora35 - stage: Docker_2_12 displayName: Docker 2.12 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.12/linux/{0}/1 targets: - name: CentOS 7 test: centos7 - stage: Docker_2_11 displayName: Docker 2.11 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.11/linux/{0}/1 targets: - name: CentOS 7 test: centos7 - stage: Docker_2_9 displayName: Docker 2.9 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.9/linux/{0}/1 targets: - name: CentOS 7 test: centos7 ## Remote - stage: Remote_devel displayName: Remote devel dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: devel/{0}/1 targets: - name: RHEL 7.9 test: rhel/7.9 - name: RHEL 8.6 test: rhel/8.6 - name: RHEL 9.0 test: rhel/9.0 - stage: Remote_2_13 displayName: Remote 2.13 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.13/{0}/1 targets: - name: RHEL 7.9 test: rhel/7.9 - name: RHEL 8.6 test: rhel/8.6 - stage: Remote_2_12 displayName: Remote 2.12 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.12/{0}/1 targets: - name: RHEL 7.9 test: rhel/7.9 - name: RHEL 8.6 test: rhel/8.6 - stage: Remote_2_11 displayName: Remote 2.11 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.11/{0}/1 targets: - name: RHEL 7.9 test: rhel/7.9 - name: RHEL 8.6 test: rhel/8.6 - stage: Remote_2_9 displayName: Remote 2.9 dependsOn: [] jobs: - template: templates/matrix.yml parameters: testFormat: 2.9/{0}/1 targets: - name: RHEL 7.9 test: rhel/7.9 - name: RHEL 8.6 test: rhel/8.6 ## Finally - stage: Summary condition: succeededOrFailed() dependsOn: - Remote_2_9 - Docker_2_9 - Remote_2_11 - Docker_2_11 - Remote_2_12 - Docker_2_12 - Remote_2_13 - Docker_2_13 - Remote_devel - Docker_devel jobs: - template: templates/coverage.yml