Skip to content

Commit b0021e5

Browse files
committed
ci: gcc uses -static
fix #547
1 parent 49fc14b commit b0021e5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,9 @@ jobs:
240240
cmake-version: ${{ matrix.compiler == 'clang' && '3.26' || '>=3.26' }}
241241
cxxstd: ${{ matrix.cxxstd }}
242242
cc: ${{ steps.setup-cpp.outputs.cc || matrix.cc }}
243-
ccflags: ${{ matrix.ccflags }}${{ ( matrix.compiler == 'gcc' && ' -static-libstdc++') || '' }}${{ ( matrix.asan && ' -static-libasan') || '' }}${{ ( matrix.tsan && ' -static-libtsan') || '' }}
243+
ccflags: ${{ matrix.ccflags }}${{ ( matrix.compiler == 'gcc' && ' -static') || '' }}${{ ( matrix.asan && ' -static-libasan') || '' }}${{ ( matrix.tsan && ' -static-libtsan') || '' }}
244244
cxx: ${{ steps.setup-cpp.outputs.cxx || matrix.cxx }}
245-
cxxflags: ${{ matrix.cxxflags }}${{ ( matrix.compiler == 'gcc' && ' -static-libstdc++') || '' }}${{ ( matrix.asan && ' -static-libasan') || '' }}${{ ( matrix.tsan && ' -static-libtsan') || '' }}
245+
cxxflags: ${{ matrix.cxxflags }}${{ ( matrix.compiler == 'gcc' && ' -static') || '' }}${{ ( matrix.asan && ' -static-libasan') || '' }}${{ ( matrix.tsan && ' -static-libtsan') || '' }}
246246
generator: Ninja
247247
toolchain: ${{ steps.package-install.outputs.vcpkg_toolchain || steps.package-install.outputs.vcpkg-toolchain }}
248248
build-type: ${{ matrix.build-type }}
@@ -357,7 +357,9 @@ jobs:
357357

358358
name: Demos
359359
timeout-minutes: 120
360-
runs-on: ubuntu-22.04
360+
# We purposefully use an older version of Ubuntu to
361+
# ensure compatibility with the oldest supported version
362+
runs-on: ubuntu-20.04
361363
container: ubuntu:23.04
362364

363365
permissions:

0 commit comments

Comments
 (0)