Skip to content

Commit 858a7ea

Browse files
authored
Merge pull request #1705 from stevenengler/debian-11
Add support in docs and CI for Debian 11
2 parents 98c7aae + e1163cb commit 858a7ea

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ jobs:
2929
options: '--shm-size="1g" --security-opt seccomp=unconfined'
3030
strategy:
3131
matrix:
32-
container: ['ubuntu:18.04', 'ubuntu:20.04', 'debian:10-slim', 'fedora:34', 'quay.io/centos/centos:stream8']
32+
container:
33+
- 'ubuntu:18.04'
34+
- 'ubuntu:20.04'
35+
- 'debian:10-slim'
36+
- 'debian:11-slim'
37+
- 'fedora:34'
38+
- 'quay.io/centos/centos:stream8'
3339
cc: ['gcc', 'clang']
3440
buildtype: ['debug', 'release']
3541
env:

ci/run.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ CONTAINERS=(
1010
ubuntu:18.04
1111
ubuntu:20.04
1212
debian:10-slim
13+
debian:11-slim
1314
fedora:34
1415
quay.io/centos/centos:stream8
1516
)
@@ -57,13 +58,13 @@ and containers to ubuntu:18.04 and fedora:34:
5758
$0 -C gcc -c "ubuntu:18.04 fedora:34"
5859
5960
Set "extra" configurations to ubuntu:18.04;clang;coverage
60-
and debian:10-slim;gcc;coverage
61+
and debian:11-slim;gcc;coverage
6162
62-
$0 -e "ubuntu:18.04;clang;coverage debian:10-slim;gcc;coverage"
63+
$0 -e "ubuntu:18.04;clang;coverage debian:11-slim;gcc;coverage"
6364
6465
Set *only* configurations to run:
6566
66-
$0 -o "ubuntu:18.04;clang;coverage debian:10-slim;gcc;coverage"
67+
$0 -o "ubuntu:18.04;clang;coverage debian:11-slim;gcc;coverage"
6768
EOF
6869
}
6970

docs/supported_platforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Officially supported platforms
44

55
+ Ubuntu 18.04 and 20.04
6-
+ Debian 10
6+
+ Debian 10 and 11
77
+ Fedora 34
88
+ CentOS Stream 8
99

0 commit comments

Comments
 (0)