Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit 253d54b

Browse files
committed
Fix CI build of simd-json
error[E0308]: mismatched types --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/simd-json-0.4.13/src/lib.rs:213:86 | 213 | fn please_compile_with_a_simd_compatible_cpu_setting_read_the_simdjonsrs_readme() -> ! {} | ---------------------------------------------------------------------------- ^ expected `!`, found `()` | | | implicitly returns `()` as its body has no tail or `return` expression | = note: expected type `!` found unit type `()`
1 parent 4c85b10 commit 253d54b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
schedule: [cron: "40 1 * * *"]
77

88
env:
9-
RUSTFLAGS: '-Dwarnings'
9+
RUSTFLAGS: -C target-cpu=native -Dwarnings
1010

1111
jobs:
1212
test:

0 commit comments

Comments
 (0)