Skip to content

Commit 7741b90

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

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

Diff for: .gitlab-ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ rubocop:
124124
## Define the rest of the matrix based on Kitchen testing
125125
# Make sure the instances listed below match up with
126126
# the `platforms` defined in `kitchen.yml`
127+
# default-debian-11-tiamat-py3: {extends: '.test_instance'}
127128
# default-debian-10-tiamat-py3: {extends: '.test_instance'}
128129
# default-debian-9-tiamat-py3: {extends: '.test_instance'}
129130
# default-ubuntu-2004-tiamat-py3: {extends: '.test_instance'}
@@ -135,6 +136,9 @@ rubocop:
135136
# default-oraclelinux-7-tiamat-py3: {extends: '.test_instance'}
136137
# default-almalinux-8-tiamat-py3: {extends: '.test_instance'}
137138
# default-rockylinux-8-tiamat-py3: {extends: '.test_instance'}
139+
# default-debian-11-master-py3: {extends: '.test_instance'}
140+
# modules-debian-11-master-py3: {extends: '.test_instance'}
141+
debian-11-master-py3: {extends: '.test_instance'}
138142
# default-debian-10-master-py3: {extends: '.test_instance'}
139143
# modules-debian-10-master-py3: {extends: '.test_instance'}
140144
debian-10-master-py3: {extends: '.test_instance'}
@@ -193,6 +197,7 @@ almalinux-8-master-py3: {extends: '.test_instance'}
193197
# default-rockylinux-8-master-py3: {extends: '.test_instance'}
194198
# modules-rockylinux-8-master-py3: {extends: '.test_instance'}
195199
rockylinux-8-master-py3: {extends: '.test_instance'}
200+
# default-debian-11-3003-1-py3: {extends: '.test_instance'}
196201
# default-debian-10-3003-1-py3: {extends: '.test_instance'}
197202
# default-debian-9-3003-1-py3: {extends: '.test_instance'}
198203
# default-ubuntu-2004-3003-1-py3: {extends: '.test_instance'}
@@ -210,6 +215,7 @@ rockylinux-8-master-py3: {extends: '.test_instance'}
210215
# default-arch-base-latest-3003-1-py3: {extends: '.test_instance'}
211216
# default-gentoo-stage3-latest-3003-1-py3: {extends: '.test_instance'}
212217
# default-gentoo-stage3-systemd-3003-1-py3: {extends: '.test_instance'}
218+
# default-debian-11-3002-6-py3: {extends: '.test_instance'}
213219
# default-debian-10-3002-6-py3: {extends: '.test_instance'}
214220
# default-debian-9-3002-6-py3: {extends: '.test_instance'}
215221
# default-ubuntu-2004-3002-6-py3: {extends: '.test_instance'}

Diff for: .travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
## Define the rest of the matrix based on Kitchen testing
8484
# Make sure the instances listed below match up with
8585
# the `platforms` defined in `kitchen.yml`
86+
# - env: INSTANCE=default-debian-11-tiamat-py3
8687
# - env: INSTANCE=default-debian-10-tiamat-py3
8788
# - env: INSTANCE=default-debian-9-tiamat-py3
8889
# - env: INSTANCE=default-ubuntu-2004-tiamat-py3
@@ -94,6 +95,9 @@ jobs:
9495
# - env: INSTANCE=default-oraclelinux-7-tiamat-py3
9596
# - env: INSTANCE=default-almalinux-8-tiamat-py3
9697
# - env: INSTANCE=default-rockylinux-8-tiamat-py3
98+
# - env: INSTANCE=default-debian-11-master-py3
99+
# - env: INSTANCE=modules-debian-11-master-py3
100+
- env: INSTANCE=debian-11-master-py3
97101
# - env: INSTANCE=default-debian-10-master-py3
98102
# - env: INSTANCE=modules-debian-10-master-py3
99103
- env: INSTANCE=debian-10-master-py3
@@ -152,6 +156,7 @@ jobs:
152156
# - env: INSTANCE=default-rockylinux-8-master-py3
153157
# - env: INSTANCE=modules-rockylinux-8-master-py3
154158
- env: INSTANCE=rockylinux-8-master-py3
159+
# - env: INSTANCE=default-debian-11-3003-1-py3
155160
# - env: INSTANCE=default-debian-10-3003-1-py3
156161
# - env: INSTANCE=default-debian-9-3003-1-py3
157162
# - env: INSTANCE=default-ubuntu-2004-3003-1-py3
@@ -169,6 +174,7 @@ jobs:
169174
# - env: INSTANCE=default-arch-base-latest-3003-1-py3
170175
# - env: INSTANCE=default-gentoo-stage3-latest-3003-1-py3
171176
# - env: INSTANCE=default-gentoo-stage3-systemd-3003-1-py3
177+
# - env: INSTANCE=default-debian-11-3002-6-py3
172178
# - env: INSTANCE=default-debian-10-3002-6-py3
173179
# - env: INSTANCE=default-debian-9-3002-6-py3
174180
# - env: INSTANCE=default-ubuntu-2004-3002-6-py3

Diff for: .yamllint

+8-6
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/

Diff for: kitchen.yml

+16
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ provisioner:
2020

2121
platforms:
2222
## SALT `tiamat`
23+
- name: debian-11-tiamat-py3
24+
driver:
25+
image: saltimages/salt-tiamat-py3:debian-11
26+
run_command: /lib/systemd/systemd
2327
- name: debian-10-tiamat-py3
2428
driver:
2529
image: saltimages/salt-tiamat-py3:debian-10
@@ -59,6 +63,10 @@ platforms:
5963
image: saltimages/salt-tiamat-py3:rockylinux-8
6064

6165
## SALT `master`
66+
- name: debian-11-master-py3
67+
driver:
68+
image: saltimages/salt-master-py3:debian-11
69+
run_command: /lib/systemd/systemd
6270
- name: debian-10-master-py3
6371
driver:
6472
image: saltimages/salt-master-py3:debian-10
@@ -135,6 +143,10 @@ platforms:
135143
image: saltimages/salt-master-py3:rockylinux-8
136144

137145
## SALT `3003.1`
146+
- name: debian-11-3003-1-py3
147+
driver:
148+
image: saltimages/salt-3003.1-py3:debian-11
149+
run_command: /lib/systemd/systemd
138150
- name: debian-10-3003-1-py3
139151
driver:
140152
image: saltimages/salt-3003.1-py3:debian-10
@@ -205,6 +217,10 @@ platforms:
205217
image: saltimages/salt-3003.1-py3:gentoo-stage3-systemd
206218

207219
## SALT `3002.6`
220+
- name: debian-11-3002-6-py3
221+
driver:
222+
image: saltimages/salt-3002.6-py3:debian-11
223+
run_command: /lib/systemd/systemd
208224
- name: debian-10-3002-6-py3
209225
driver:
210226
image: saltimages/salt-3002.6-py3:debian-10

0 commit comments

Comments
 (0)