|
| 1 | +--- |
| 2 | +driver: |
| 3 | + name: docker |
| 4 | +platforms: # Oracle Linux 7 works in local tests but bugs out in GitHub actions for some undetermined reason |
| 5 | + - name: almalinux-8 |
| 6 | + image: almalinux:8 |
| 7 | + dockerfile: ../common/Dockerfile.j2 |
| 8 | + privileged: true |
| 9 | + cgroupns_mode: host |
| 10 | + volumes: |
| 11 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 12 | + command: /usr/sbin/init |
| 13 | + - name: almalinux-9 |
| 14 | + image: almalinux:9 |
| 15 | + dockerfile: ../common/Dockerfile.j2 |
| 16 | + privileged: true |
| 17 | + cgroupns_mode: host |
| 18 | + volumes: |
| 19 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 20 | + command: /usr/sbin/init |
| 21 | + - name: alpine-3.15 |
| 22 | + image: alpine:3.15 |
| 23 | + dockerfile: ../common/Dockerfile.j2 |
| 24 | + privileged: true |
| 25 | + cgroupns_mode: host |
| 26 | + volumes: |
| 27 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 28 | + command: /sbin/init |
| 29 | + - name: alpine-3.16 |
| 30 | + image: alpine:3.16 |
| 31 | + platform: x86_64 |
| 32 | + dockerfile: ../common/Dockerfile.j2 |
| 33 | + privileged: true |
| 34 | + cgroupns_mode: host |
| 35 | + volumes: |
| 36 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 37 | + command: /sbin/init |
| 38 | + - name: alpine-3.17 |
| 39 | + image: alpine:3.17 |
| 40 | + # platform: aarch64 |
| 41 | + dockerfile: ../common/Dockerfile.j2 |
| 42 | + privileged: true |
| 43 | + cgroupns_mode: host |
| 44 | + volumes: |
| 45 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 46 | + command: /sbin/init |
| 47 | + - name: alpine-3.18 |
| 48 | + image: alpine:3.18 |
| 49 | + dockerfile: ../common/Dockerfile.j2 |
| 50 | + privileged: true |
| 51 | + cgroupns_mode: host |
| 52 | + volumes: |
| 53 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 54 | + command: /sbin/init |
| 55 | + - name: amazonlinux-2 |
| 56 | + image: amazonlinux:2 |
| 57 | + platform: x86_64 |
| 58 | + dockerfile: ../common/Dockerfile.j2 |
| 59 | + privileged: true |
| 60 | + cgroupns_mode: host |
| 61 | + volumes: |
| 62 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 63 | + command: /usr/sbin/init |
| 64 | + - name: centos-7 |
| 65 | + image: centos:7 |
| 66 | + platform: x86_64 |
| 67 | + dockerfile: ../common/Dockerfile.j2 |
| 68 | + privileged: true |
| 69 | + cgroupns_mode: host |
| 70 | + volumes: |
| 71 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 72 | + command: /usr/sbin/init |
| 73 | + - name: debian-bullseye |
| 74 | + image: debian:bullseye-slim |
| 75 | + dockerfile: ../common/Dockerfile.j2 |
| 76 | + privileged: true |
| 77 | + cgroupns_mode: host |
| 78 | + volumes: |
| 79 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 80 | + command: /sbin/init |
| 81 | + - name: debian-bookworm |
| 82 | + image: debian:bookworm-slim |
| 83 | + dockerfile: ../common/Dockerfile.j2 |
| 84 | + privileged: true |
| 85 | + cgroupns_mode: host |
| 86 | + volumes: |
| 87 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 88 | + command: /sbin/init |
| 89 | + - name: oraclelinux-8 |
| 90 | + image: oraclelinux:8 |
| 91 | + dockerfile: ../common/Dockerfile.j2 |
| 92 | + privileged: true |
| 93 | + cgroupns_mode: host |
| 94 | + volumes: |
| 95 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 96 | + command: /usr/sbin/init |
| 97 | + - name: oraclelinux-9 |
| 98 | + image: oraclelinux:9 |
| 99 | + dockerfile: ../common/Dockerfile.j2 |
| 100 | + privileged: true |
| 101 | + cgroupns_mode: host |
| 102 | + volumes: |
| 103 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 104 | + command: /usr/sbin/init |
| 105 | + - name: rhel-7 |
| 106 | + image: registry.access.redhat.com/ubi7:7.9 |
| 107 | + platform: x86_64 |
| 108 | + dockerfile: ../common/Dockerfile.j2 |
| 109 | + privileged: true |
| 110 | + cgroupns_mode: host |
| 111 | + volumes: |
| 112 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 113 | + command: /usr/sbin/init |
| 114 | + - name: rhel-8 |
| 115 | + image: redhat/ubi8:8.7 |
| 116 | + # platform: s390x |
| 117 | + dockerfile: ../common/Dockerfile.j2 |
| 118 | + privileged: true |
| 119 | + cgroupns_mode: host |
| 120 | + volumes: |
| 121 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 122 | + command: /usr/sbin/init |
| 123 | + - name: rhel-9 |
| 124 | + image: redhat/ubi9:9.1.0 |
| 125 | + # platform: aarch64 |
| 126 | + dockerfile: ../common/Dockerfile.j2 |
| 127 | + privileged: true |
| 128 | + cgroupns_mode: host |
| 129 | + volumes: |
| 130 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 131 | + command: /usr/sbin/init |
| 132 | + - name: rockylinux-8 |
| 133 | + image: rockylinux:8 |
| 134 | + dockerfile: ../common/Dockerfile.j2 |
| 135 | + privileged: true |
| 136 | + cgroupns_mode: host |
| 137 | + volumes: |
| 138 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 139 | + command: /usr/sbin/init |
| 140 | + - name: rockylinux-9 |
| 141 | + image: rockylinux:9.0 |
| 142 | + dockerfile: ../common/Dockerfile.j2 |
| 143 | + privileged: true |
| 144 | + cgroupns_mode: host |
| 145 | + volumes: |
| 146 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 147 | + command: /usr/sbin/init |
| 148 | + - name: sles15 |
| 149 | + image: registry.suse.com/bci/bci-base:15.4 |
| 150 | + platform: x86_64 |
| 151 | + dockerfile: ../common/Dockerfile.j2 |
| 152 | + privileged: true |
| 153 | + cgroupns_mode: host |
| 154 | + volumes: |
| 155 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 156 | + command: /usr/sbin/init |
| 157 | + - name: ubuntu-focal |
| 158 | + image: ubuntu:focal |
| 159 | + # platform: s390x |
| 160 | + dockerfile: ../common/Dockerfile.j2 |
| 161 | + privileged: true |
| 162 | + cgroupns_mode: host |
| 163 | + volumes: |
| 164 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 165 | + command: /sbin/init |
| 166 | + - name: ubuntu-jammy |
| 167 | + image: ubuntu:jammy |
| 168 | + # platform: aarch64 |
| 169 | + dockerfile: ../common/Dockerfile.j2 |
| 170 | + privileged: true |
| 171 | + cgroupns_mode: host |
| 172 | + volumes: |
| 173 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 174 | + command: /sbin/init |
| 175 | + - name: ubuntu-lunar |
| 176 | + image: ubuntu:lunar |
| 177 | + dockerfile: ../common/Dockerfile.j2 |
| 178 | + privileged: true |
| 179 | + cgroupns_mode: host |
| 180 | + volumes: |
| 181 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 182 | + command: /sbin/init |
| 183 | +provisioner: |
| 184 | + name: ansible |
| 185 | + log: true |
| 186 | + playbooks: |
| 187 | + converge: converge.yml |
| 188 | + verify: verify.yml |
0 commit comments