Skip to content

Commit 2de5c2e

Browse files
committed
Try force disabling lld on nightly
1 parent 530b1a5 commit 2de5c2e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,11 @@ jobs:
126126
path: /tmp/
127127
- run: chmod +x /tmp/cross
128128
- run: ci/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }}
129-
- run: ci/test.bash /tmp/cross ${{ matrix.target }}
129+
- run: |
130+
if ${{ matrix.channel }} == "nightly" then
131+
export RUSTFLAGS='-Z linker-features=-lld'
132+
fi
133+
ci/test.bash /tmp/cross ${{ matrix.target }}
130134
131135
strategy:
132136
fail-fast: false

0 commit comments

Comments
 (0)