Skip to content

Commit 173bc56

Browse files
committed
ci: build with statically-linked standard libraries more often
The statically-linked builds are now performed on Ubuntu 24.04 runner images of GHA, too.
1 parent b514621 commit 173bc56

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/clang.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ jobs:
5050
cd build_static_std_libs
5151
cmake ../ -DENABLE_LTO=ON -DENABLE_STATIC_STANDARD_LIBRARIES=ON
5252
make -j2
53-
if: matrix.version == 14
53+
if: matrix.version == 14 || matrix.version == 18
5454
- name: Tests of build with statically linked standard libraries
5555
run: |
5656
cd "$GITHUB_WORKSPACE"/build_static_std_libs
5757
ctest -V
58-
if: matrix.version == 14
58+
if: matrix.version == 14 || matrix.version == 18

.github/workflows/gcc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ jobs:
5050
cd build_static_std_libs
5151
cmake ../ -DENABLE_LTO=ON -DENABLE_STATIC_STANDARD_LIBRARIES=ON
5252
make -j2
53-
if: matrix.version == 12
53+
if: matrix.version == 12 || matrix.version == 14
5454
- name: Tests of build with statically linked standard libraries
5555
run: |
5656
cd "$GITHUB_WORKSPACE"/build_static_std_libs
5757
ctest -V
58-
if: matrix.version == 12
58+
if: matrix.version == 12 || matrix.version == 14

0 commit comments

Comments
 (0)