File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ jobs:
240
240
cmake-version : ${{ matrix.compiler == 'clang' && '3.26' || '>=3.26' }}
241
241
cxxstd : ${{ matrix.cxxstd }}
242
242
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') || '' }}
244
244
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') || '' }}
246
246
generator : Ninja
247
247
toolchain : ${{ steps.package-install.outputs.vcpkg_toolchain || steps.package-install.outputs.vcpkg-toolchain }}
248
248
build-type : ${{ matrix.build-type }}
@@ -357,7 +357,9 @@ jobs:
357
357
358
358
name : Demos
359
359
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
361
363
container : ubuntu:23.04
362
364
363
365
permissions :
You can’t perform that action at this time.
0 commit comments