From 85afe16030e32c4944a5beae6d4c79e9ad62fefa Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Sun, 19 May 2024 10:02:43 +0200 Subject: [PATCH] Try force disabling lld on nightly --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d057dae..08c4510e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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