We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca71de commit b801ef6Copy full SHA for b801ef6
.github/workflows/rust-ci.yml
@@ -42,7 +42,17 @@ jobs:
42
if: runner.os == 'macOS'
43
run: rm -f .cargo/config.toml
44
- uses: dtolnay/rust-toolchain@stable
45
- - run: cargo test --workspace
+ - name: Install lld (Linux only)
46
+ if: runner.os == 'Linux'
47
+ run: sudo apt-get update && sudo apt-get install -y lld
48
+ - name: Run tests (with lld on Linux)
49
50
+ env:
51
+ RUSTFLAGS: "-Clinker-features=-lld"
52
+ run: cargo test --workspace
53
+ - name: Run tests (Windows & macOS)
54
+ if: runner.os != 'Linux'
55
56
57
fmt:
58
name: Rustfmt
0 commit comments