Skip to content

Commit

Permalink
ci: build with statically-linked standard libraries more often
Browse files Browse the repository at this point in the history
The statically-linked builds are now performed on Ubuntu 24.04
runner images of GHA, too.
  • Loading branch information
striezel committed Aug 9, 2024
1 parent b514621 commit 173bc56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
cd build_static_std_libs
cmake ../ -DENABLE_LTO=ON -DENABLE_STATIC_STANDARD_LIBRARIES=ON
make -j2
if: matrix.version == 14
if: matrix.version == 14 || matrix.version == 18
- name: Tests of build with statically linked standard libraries
run: |
cd "$GITHUB_WORKSPACE"/build_static_std_libs
ctest -V
if: matrix.version == 14
if: matrix.version == 14 || matrix.version == 18
4 changes: 2 additions & 2 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
cd build_static_std_libs
cmake ../ -DENABLE_LTO=ON -DENABLE_STATIC_STANDARD_LIBRARIES=ON
make -j2
if: matrix.version == 12
if: matrix.version == 12 || matrix.version == 14
- name: Tests of build with statically linked standard libraries
run: |
cd "$GITHUB_WORKSPACE"/build_static_std_libs
ctest -V
if: matrix.version == 12
if: matrix.version == 12 || matrix.version == 14

0 comments on commit 173bc56

Please sign in to comment.