summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build_test.yml
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2022-05-07 14:40:56 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2022-05-23 16:30:48 +0200
commitaf7211541272823b1ef4fef8c36d10dc1027733e (patch)
treef33dd2dd465faaf9852aafb0e04b6a3726c9618d /.github/workflows/build_test.yml
parentMerge pull request #23344 from medhefgo/boot-config-add (diff)
downloadsystemd-af7211541272823b1ef4fef8c36d10dc1027733e.tar.xz
systemd-af7211541272823b1ef4fef8c36d10dc1027733e.zip
ci: bump gcc in the "build test" workflow
gcc-12 has been released
Diffstat (limited to '')
-rw-r--r--.github/workflows/build_test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index 86b9a52684..8a19d5a937 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -25,8 +25,8 @@ jobs:
fail-fast: false
matrix:
env:
- - { COMPILER: "gcc", COMPILER_VERSION: "10", LINKER: "bfd", CRYPTOLIB: "gcrypt" }
- - { COMPILER: "gcc", COMPILER_VERSION: "11", LINKER: "gold", CRYPTOLIB: "openssl" }
+ - { COMPILER: "gcc", COMPILER_VERSION: "11", LINKER: "bfd", CRYPTOLIB: "gcrypt" }
+ - { COMPILER: "gcc", COMPILER_VERSION: "12", LINKER: "gold", CRYPTOLIB: "openssl" }
- { COMPILER: "clang", COMPILER_VERSION: "12", LINKER: "gold", CRYPTOLIB: "gcrypt" }
- { COMPILER: "clang", COMPILER_VERSION: "13", LINKER: "lld", CRYPTOLIB: "openssl" }
- { COMPILER: "clang", COMPILER_VERSION: "14", LINKER: "bfd", CRYPTOLIB: "auto" }