diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2022-05-07 14:40:56 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-05-23 16:30:48 +0200 |
commit | af7211541272823b1ef4fef8c36d10dc1027733e (patch) | |
tree | f33dd2dd465faaf9852aafb0e04b6a3726c9618d /.github/workflows/build_test.yml | |
parent | Merge pull request #23344 from medhefgo/boot-config-add (diff) | |
download | systemd-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.yml | 4 |
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" } |