Skip to content

Commit

Permalink
Don't use lld on window CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
guusw committed Dec 7, 2022
1 parent b1af54d commit 960da23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ jobs:
./bootstrap
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=${{ steps.setup.outputs.build-type }} -DUSE_LIBBACKTRACE=${{ steps.setup.outputs.bitness == '64bits' }} ..
# Some commits hang the linking step during one of the following targets
# Passing -DUSE_LLD=OFF will use the default mingw ld linker which doesn't have this issue
cmake -G Ninja -DUSE_LLD=OFF -DCMAKE_BUILD_TYPE=${{ steps.setup.outputs.build-type }} -DUSE_LIBBACKTRACE=${{ steps.setup.outputs.bitness == '64bits' }} ..
ninja ${{ steps.setup.outputs.build-target }}
- name: Test runtime (Debug)
if: ${{ steps.setup.outputs.runtime-tests == 'true' && steps.setup.outputs.build-type == 'Debug' }}
Expand Down

0 comments on commit 960da23

Please sign in to comment.