Skip to content

Commit

Permalink
Try force disabling lld on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed May 19, 2024
1 parent 530b1a5 commit 2de5c2e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ jobs:
path: /tmp/
- run: chmod +x /tmp/cross
- run: ci/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }}
- run: ci/test.bash /tmp/cross ${{ matrix.target }}
- run: |
if ${{ matrix.channel }} == "nightly" then
export RUSTFLAGS='-Z linker-features=-lld'
fi
ci/test.bash /tmp/cross ${{ matrix.target }}
strategy:
fail-fast: false
Expand Down

0 comments on commit 2de5c2e

Please sign in to comment.