Skip to content

Commit fa680d2

Browse files
committed
Remove feature flag ci
1 parent bf713b5 commit fa680d2

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,41 +29,22 @@ jobs:
2929
run: cargo clippy
3030
env:
3131
RUSTFLAGS: "-D warnings"
32-
- name: Test (fast-io)
32+
- name: Test
3333
run: cargo test --lib -- --test-threads 1
3434
env:
3535
RUSTFLAGS: ""
36-
- name: Test (slow-io)
37-
run: cargo test --lib --features slow-io -- --test-threads 1
38-
env:
39-
RUSTFLAGS: ""
4036
- name: Check C
4137
run: |
4238
scripts/check.sh \
4339
"./release.sh | tee /tmp/code.c" \
4440
"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"
5041
- name: Check ASM
5142
run: |
5243
scripts/check.sh \
5344
"./release-asm.sh | tee /tmp/code.s" \
5445
"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"
6046
- name: Check Rust
6147
run: |
6248
scripts/check.sh \
6349
"./release-rs.sh | tee /tmp/code.rs" \
6450
"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"

0 commit comments

Comments
 (0)