trigger: batch: true branches: include: - main - stable-* pr: autoCancel: true branches: include: - main - stable-* schedules: - cron: 0 8 * * * displayName: Nightly (main) always: true branches: include: - main - cron: 0 10 * * * displayName: Nightly (active stable branches) always: true branches: include: - stable-2 - stable-3 - cron: 0 11 * * 0 displayName: Weekly (old stable branches) always: true branches: include: - stable-1 variables: - name: checkoutPath value: ansible_collections/community/general - 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: - stage: Units_devel displayName: Units devel dependsOn: [] jobs: - template: templates/matrix.yml parameters: nameFormat: Python {0} testFormat: devel/units/{0}/1 targets: - test: 2.6 - test: 2.7 - test: 3.5 - test: 3.6 - test: 3.7 - test: 3.8 - test: 3.9 - test: '3.10' - stage: Summary condition: succeededOrFailed() dependsOn: - Units_devel jobs: - template: templates/coverage.yml