mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-15 11:32:05 +00:00
* CI: Add Debian 13 Trixie (#1113)
* Add Debian 13 Trixie to CI.
* I don't think this is needed any longer.
* Debian: adjust way GPG signature is installed for Docker's software repo.
(cherry picked from commit 1ba34b9b7c)
* Skip Docker Compose v1 on Debian Trixie.
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
293 lines
6.9 KiB
YAML
293 lines
6.9 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
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
|
|
- cron: 0 12 * * 0
|
|
displayName: Weekly (old stable branches)
|
|
always: true
|
|
branches:
|
|
include:
|
|
- stable-3
|
|
|
|
variables:
|
|
- name: checkoutPath
|
|
value: ansible_collections/community/docker
|
|
- name: coverageBranches
|
|
value: main
|
|
- name: entryPoint
|
|
value: tests/utils/shippable/shippable.sh
|
|
- name: fetchDepth
|
|
value: 0
|
|
|
|
resources:
|
|
containers:
|
|
- container: default
|
|
image: quay.io/ansible/azure-pipelines-test-container:7.0.0
|
|
|
|
pool: Standard
|
|
|
|
stages:
|
|
|
|
### Sanity & units
|
|
- stage: Ansible_2_19
|
|
displayName: Sanity & Units 2.19
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
targets:
|
|
- name: Sanity
|
|
test: '2.19/sanity/1'
|
|
- name: Units
|
|
test: '2.19/units/1'
|
|
- stage: Ansible_2_18
|
|
displayName: Sanity & Units 2.18
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
targets:
|
|
- name: Sanity
|
|
test: '2.18/sanity/1'
|
|
- name: Units
|
|
test: '2.18/units/1'
|
|
- stage: Ansible_2_17
|
|
displayName: Sanity & Units 2.17
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
targets:
|
|
- name: Sanity
|
|
test: '2.17/sanity/1'
|
|
- name: Units
|
|
test: '2.17/units/1'
|
|
- stage: Ansible_2_16
|
|
displayName: Sanity & Units 2.16
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
targets:
|
|
- name: Sanity
|
|
test: '2.16/sanity/1'
|
|
- name: Units
|
|
test: '2.16/units/1'
|
|
|
|
### Docker
|
|
- stage: Docker_2_19
|
|
displayName: Docker 2.19
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.19/linux/{0}
|
|
targets:
|
|
- name: Fedora 41
|
|
test: fedora41
|
|
- name: Ubuntu 22.04
|
|
test: ubuntu2204
|
|
- name: Ubuntu 24.04
|
|
test: ubuntu2404
|
|
- name: Alpine 3.21
|
|
test: alpine321
|
|
groups:
|
|
- 4
|
|
- 5
|
|
# - 6 -- some images no longer work with docker-compose v1
|
|
- stage: Docker_2_18
|
|
displayName: Docker 2.18
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.18/linux/{0}
|
|
targets:
|
|
- name: Fedora 40
|
|
test: fedora40
|
|
- name: Ubuntu 22.04
|
|
test: ubuntu2204
|
|
- name: Alpine 3.20
|
|
test: alpine320
|
|
groups:
|
|
- 4
|
|
- 5
|
|
# - 6 -- some images no longer work with docker-compose v1
|
|
- stage: Docker_2_17
|
|
displayName: Docker 2.17
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.17/linux/{0}
|
|
targets:
|
|
- name: Fedora 39
|
|
test: fedora39
|
|
- name: Ubuntu 20.04
|
|
test: ubuntu2004
|
|
- name: Alpine 3.19
|
|
test: alpine319
|
|
groups:
|
|
- 4
|
|
- 5
|
|
- 6
|
|
- stage: Docker_2_16
|
|
displayName: Docker 2.16
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.16/linux/{0}
|
|
targets:
|
|
- name: Fedora 38
|
|
test: fedora38
|
|
- name: CentOS 7
|
|
test: centos7
|
|
- name: openSUSE 15
|
|
test: opensuse15
|
|
- name: Alpine 3
|
|
test: alpine3
|
|
groups:
|
|
- 4
|
|
- 5
|
|
- 6
|
|
|
|
### Community Docker
|
|
- stage: Docker_community_2_19
|
|
displayName: Docker (community images) 2.19
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.19/linux-community/{0}
|
|
targets:
|
|
- name: Debian 11 Bullseye
|
|
test: debian-bullseye/3.9
|
|
- name: Debian 12 Bookworm
|
|
test: debian-bookworm/3.11
|
|
- name: Debian 13 Trixie
|
|
test: debian-13-trixie/3.13
|
|
- name: ArchLinux
|
|
test: archlinux/3.13
|
|
groups:
|
|
- 4
|
|
- 5
|
|
- 6
|
|
|
|
### Remote
|
|
- stage: Remote_2_19
|
|
displayName: Remote 2.19
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.19/{0}
|
|
targets:
|
|
- name: RHEL 9.5 with Docker SDK, urllib3, requests from sources
|
|
test: rhel/9.5-dev-latest
|
|
groups:
|
|
- 1
|
|
- 2
|
|
- 3
|
|
- 4
|
|
- 5
|
|
# - 6 -- Docker 26 no longer works with docker-compose v1
|
|
- stage: Remote_2_18
|
|
displayName: Remote 2.18
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.18/{0}
|
|
targets:
|
|
- name: RHEL 9.4
|
|
test: rhel/9.4
|
|
groups:
|
|
- 1
|
|
- 2
|
|
- 3
|
|
- 4
|
|
- 5
|
|
# - 6 -- Docker 26 no longer works with docker-compose v1
|
|
- stage: Remote_2_17
|
|
displayName: Remote 2.17
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.17/{0}
|
|
targets:
|
|
- name: RHEL 9.3
|
|
test: rhel/9.3
|
|
groups:
|
|
- 1
|
|
- 2
|
|
- 3
|
|
- 4
|
|
- 5
|
|
# - 6 -- Docker 26 no longer works with docker-compose v1
|
|
- stage: Remote_2_16
|
|
displayName: Remote 2.16
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/matrix.yml
|
|
parameters:
|
|
testFormat: 2.16/{0}
|
|
targets:
|
|
- name: RHEL 9.2
|
|
test: rhel/9.2
|
|
# Currently always hangs in group 2
|
|
# - name: RHEL 8.8
|
|
# test: rhel/8.8
|
|
- name: RHEL 7.9
|
|
test: rhel/7.9
|
|
groups:
|
|
- 1
|
|
- 2
|
|
- 3
|
|
- 4
|
|
- 5
|
|
|
|
## Finally
|
|
|
|
- stage: Summary
|
|
condition: succeededOrFailed()
|
|
dependsOn:
|
|
- Ansible_2_19
|
|
- Ansible_2_18
|
|
- Ansible_2_17
|
|
- Ansible_2_16
|
|
- Remote_2_19
|
|
- Remote_2_18
|
|
- Remote_2_17
|
|
- Remote_2_16
|
|
- Docker_2_19
|
|
- Docker_2_18
|
|
- Docker_2_17
|
|
- Docker_2_16
|
|
- Docker_community_2_19
|
|
jobs:
|
|
- template: templates/coverage.yml
|