Files
offline_kubespray/collection/community/azure/.azure-pipelines/azure-pipelines.yml
ByeonJungHun 360c6eef4a offline 작업
2024-02-19 16:02:29 +09:00

62 lines
1.1 KiB
YAML

trigger:
batch: true
branches:
include:
- main
- master
- 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/community/azure
- 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: Sanity_devel
displayName: Sanity devel
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
nameFormat: Test {0}
testFormat: devel/sanity/{0}
targets:
- test: 1
- test: extra
- stage: Summary
condition: succeededOrFailed()
dependsOn:
- Sanity_devel
jobs:
- template: templates/coverage.yml