Skip to content

Commit 1e822d0

Browse files
committed
ci: add Debian 11 Bullseye & update yamllint configuration [skip ci]
* Automated using myii/ssf-formula#345
1 parent 4ea5f26 commit 1e822d0

4 files changed

Lines changed: 52 additions & 6 deletions

File tree

.github/workflows/kitchen.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
instance:
20+
# - archive-debian-11-tiamat-py3
2021
# - archive-debian-10-tiamat-py3
2122
# - archive-debian-9-tiamat-py3
2223
# - archive-ubuntu-2004-tiamat-py3
@@ -28,6 +29,11 @@ jobs:
2829
# - archive-oraclelinux-7-tiamat-py3
2930
# - archive-almalinux-8-tiamat-py3
3031
# - archive-rockylinux-8-tiamat-py3
32+
# - archive-debian-11-master-py3
33+
# - package-debian-11-master-py3
34+
# - repo-debian-11-master-py3
35+
# - clean-debian-11-master-py3
36+
- debian-11-master-py3
3137
# - archive-debian-10-master-py3
3238
# - package-debian-10-master-py3
3339
# - repo-debian-10-master-py3
@@ -123,6 +129,7 @@ jobs:
123129
# - repo-rockylinux-8-master-py3
124130
# - clean-rockylinux-8-master-py3
125131
- rockylinux-8-master-py3
132+
# - archive-debian-11-3003-1-py3
126133
# - archive-debian-10-3003-1-py3
127134
# - archive-debian-9-3003-1-py3
128135
# - archive-ubuntu-2004-3003-1-py3
@@ -140,6 +147,7 @@ jobs:
140147
# - archive-arch-base-latest-3003-1-py3
141148
# - archive-gentoo-stage3-latest-3003-1-py3
142149
# - archive-gentoo-stage3-systemd-3003-1-py3
150+
# - archive-debian-11-3002-6-py3
143151
# - archive-debian-10-3002-6-py3
144152
# - archive-debian-9-3002-6-py3
145153
# - archive-ubuntu-2004-3002-6-py3

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
## Define the rest of the matrix based on Kitchen testing
9292
# Make sure the instances listed below match up with
9393
# the `platforms` defined in `kitchen.yml`
94+
# - env: INSTANCE=archive-debian-11-tiamat-py3
9495
# - env: INSTANCE=archive-debian-10-tiamat-py3
9596
# - env: INSTANCE=archive-debian-9-tiamat-py3
9697
# - env: INSTANCE=archive-ubuntu-2004-tiamat-py3
@@ -102,6 +103,11 @@ jobs:
102103
# - env: INSTANCE=archive-oraclelinux-7-tiamat-py3
103104
# - env: INSTANCE=archive-almalinux-8-tiamat-py3
104105
# - env: INSTANCE=archive-rockylinux-8-tiamat-py3
106+
# - env: INSTANCE=archive-debian-11-master-py3
107+
# - env: INSTANCE=package-debian-11-master-py3
108+
# - env: INSTANCE=repo-debian-11-master-py3
109+
# - env: INSTANCE=clean-debian-11-master-py3
110+
- env: INSTANCE=debian-11-master-py3
105111
# - env: INSTANCE=archive-debian-10-master-py3
106112
# - env: INSTANCE=package-debian-10-master-py3
107113
# - env: INSTANCE=repo-debian-10-master-py3
@@ -197,6 +203,7 @@ jobs:
197203
# - env: INSTANCE=repo-rockylinux-8-master-py3
198204
# - env: INSTANCE=clean-rockylinux-8-master-py3
199205
- env: INSTANCE=rockylinux-8-master-py3
206+
# - env: INSTANCE=archive-debian-11-3003-1-py3
200207
# - env: INSTANCE=archive-debian-10-3003-1-py3
201208
# - env: INSTANCE=archive-debian-9-3003-1-py3
202209
# - env: INSTANCE=archive-ubuntu-2004-3003-1-py3
@@ -214,6 +221,7 @@ jobs:
214221
# - env: INSTANCE=archive-arch-base-latest-3003-1-py3
215222
# - env: INSTANCE=archive-gentoo-stage3-latest-3003-1-py3
216223
# - env: INSTANCE=archive-gentoo-stage3-systemd-3003-1-py3
224+
# - env: INSTANCE=archive-debian-11-3002-6-py3
217225
# - env: INSTANCE=archive-debian-10-3002-6-py3
218226
# - env: INSTANCE=archive-debian-9-3002-6-py3
219227
# - env: INSTANCE=archive-ubuntu-2004-3002-6-py3

.yamllint

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
extends: 'default'
66

77
# Files to ignore completely
8-
# 1. All YAML files under directory `.cache/`, introduced during the GitLab CI run
9-
# 2. All YAML files under directory `.git/`
10-
# 3. All YAML files under directory `node_modules/`, introduced during the Travis run
11-
# 4. Any SLS files under directory `test/`, which are actually state files
12-
# 5. Any YAML files under directory `.kitchen/`, introduced during local testing
13-
# 6. `kitchen.vagrant.yml`, which contains Embedded Ruby (ERB) template syntax
8+
# 1. All YAML files under directory `.bundle/`, introduced if gems are installed locally
9+
# 2. All YAML files under directory `.cache/`, introduced during the CI run
10+
# 3. All YAML files under directory `.git/`
11+
# 4. All YAML files under directory `node_modules/`, introduced during the CI run
12+
# 5. Any SLS files under directory `test/`, which are actually state files
13+
# 6. Any YAML files under directory `.kitchen/`, introduced during local testing
14+
# 7. `kitchen.vagrant.yml`, which contains Embedded Ruby (ERB) template syntax
1415
ignore: |
16+
.bundle/
1517
.cache/
1618
.git/
1719
node_modules/

kitchen.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ provisioner:
2020

2121
platforms:
2222
## SALT `tiamat`
23+
- name: debian-11-tiamat-py3
24+
driver:
25+
image: saltimages/salt-tiamat-py3:debian-11
26+
provision_command:
27+
- apt-get update
28+
- apt-get -qq -y install conntrack
29+
run_command: /lib/systemd/systemd
2330
- name: debian-10-tiamat-py3
2431
driver:
2532
image: saltimages/salt-tiamat-py3:debian-10
@@ -81,6 +88,13 @@ platforms:
8188
image: saltimages/salt-tiamat-py3:rockylinux-8
8289

8390
## SALT `master`
91+
- name: debian-11-master-py3
92+
driver:
93+
image: saltimages/salt-master-py3:debian-11
94+
provision_command:
95+
- apt-get update
96+
- apt-get -qq -y install conntrack
97+
run_command: /lib/systemd/systemd
8498
- name: debian-10-master-py3
8599
driver:
86100
image: saltimages/salt-master-py3:debian-10
@@ -196,6 +210,13 @@ platforms:
196210
image: saltimages/salt-master-py3:rockylinux-8
197211

198212
## SALT `3003.1`
213+
- name: debian-11-3003-1-py3
214+
driver:
215+
image: saltimages/salt-3003.1-py3:debian-11
216+
provision_command:
217+
- apt-get update
218+
- apt-get -qq -y install conntrack
219+
run_command: /lib/systemd/systemd
199220
- name: debian-10-3003-1-py3
200221
driver:
201222
image: saltimages/salt-3003.1-py3:debian-10
@@ -305,6 +326,13 @@ platforms:
305326
emerge --noreplace --quiet --with-bdeps-auto=n net-firewall/conntrack-tools
306327

307328
## SALT `3002.6`
329+
- name: debian-11-3002-6-py3
330+
driver:
331+
image: saltimages/salt-3002.6-py3:debian-11
332+
provision_command:
333+
- apt-get update
334+
- apt-get -qq -y install conntrack
335+
run_command: /lib/systemd/systemd
308336
- name: debian-10-3002-6-py3
309337
driver:
310338
image: saltimages/salt-3002.6-py3:debian-10

0 commit comments

Comments
 (0)