File tree Expand file tree Collapse file tree 1 file changed +1
-20
lines changed Expand file tree Collapse file tree 1 file changed +1
-20
lines changed Original file line number Diff line number Diff line change @@ -29,41 +29,22 @@ jobs:
29
29
run : cargo clippy
30
30
env :
31
31
RUSTFLAGS : " -D warnings"
32
- - name : Test (fast-io)
32
+ - name : Test
33
33
run : cargo test --lib -- --test-threads 1
34
34
env :
35
35
RUSTFLAGS : " "
36
- - name : Test (slow-io)
37
- run : cargo test --lib --features slow-io -- --test-threads 1
38
- env :
39
- RUSTFLAGS : " "
40
36
- name : Check C
41
37
run : |
42
38
scripts/check.sh \
43
39
"./release.sh | tee /tmp/code.c" \
44
40
"cc -w /tmp/code.c -o /tmp/bin"
45
- - name : Check C (no-probe)
46
- run : |
47
- scripts/check.sh \
48
- "./release.sh --features no-probe | tee /tmp/code.c" \
49
- "cc -w /tmp/code.c -o /tmp/bin"
50
41
- name : Check ASM
51
42
run : |
52
43
scripts/check.sh \
53
44
"./release-asm.sh | tee /tmp/code.s" \
54
45
"nasm -f elf64 /tmp/code.s -o /tmp/code.o && cc /tmp/code.o -o /tmp/bin"
55
- - name : Check ASM (no-probe)
56
- run : |
57
- scripts/check.sh \
58
- "./release-asm.sh --features no-probe | tee /tmp/code.s" \
59
- "nasm -f elf64 /tmp/code.s -o /tmp/code.o && cc /tmp/code.o -o /tmp/bin"
60
46
- name : Check Rust
61
47
run : |
62
48
scripts/check.sh \
63
49
"./release-rs.sh | tee /tmp/code.rs" \
64
50
"rustc +stable -O -A dead-code /tmp/code.rs -o /tmp/bin"
65
- - name : Check Rust (no-probe)
66
- run : |
67
- scripts/check.sh \
68
- "./release-rs.sh --features no-probe | tee /tmp/code.rs" \
69
- "rustc +stable -O -A dead-code /tmp/code.rs -o /tmp/bin"
You can’t perform that action at this time.
0 commit comments