File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ rustflags = ["-Clink-arg=-fuse-ld=lld"]
9
9
10
10
# NOTE: you must manually install https://github.com/michaeleisel/zld on mac. you can easily do this with the "brew" package manager:
11
11
# `brew install michaeleisel/zld/zld`
12
- [target .x86_64-apple-darwin ]
13
- rustflags = [" -C" , " link-arg=-fuse-ld=/usr/local/bin/zld" ]
12
+ # [target.x86_64-apple-darwin]
13
+ # rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld"]
14
14
15
- [target .aarch64-apple-darwin ]
16
- rustflags = [" -C" , " link-arg=-fuse-ld=/usr/local/bin/zld" ]
15
+ # [target.aarch64-apple-darwin]
16
+ # rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld"]
17
17
18
18
[target .x86_64-pc-windows-msvc ]
19
19
linker = " rust-lld.exe"
Original file line number Diff line number Diff line change 21
21
- macOS-latest
22
22
- windows-latest
23
23
runs-on : ${{ matrix.os }}
24
+ env :
25
+ # Limit test threads to 1 to show test name before execution.
26
+ RUST_TEST_THREADS : 1
24
27
25
28
steps :
26
29
- name : Set git autocrlf to input
Original file line number Diff line number Diff line change 38
38
rustc --version
39
39
cargo --version
40
40
41
- # Limit test threads to 1 to show test name before execution.
42
- RUST_TEST_THREADS=1 cargo test --verbose {{ FEATURES}}
41
+ cargo test --verbose {{ FEATURES}}
43
42
44
43
lint :
45
44
rustc --version
You can’t perform that action at this time.
0 commit comments