Skip to content

Commit 2940af7

Browse files
committed
Remove --emit=asm, and check and build --release to Actions
1 parent e13eeb6 commit 2940af7

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[build]
2-
rustflags = ["--emit=asm", "-C", "target-cpu=native"]
2+
rustflags = ["-C", "target-cpu=native"]

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ jobs:
2727
- uses: actions/checkout@v2
2828
with:
2929
lfs: true
30+
- name: Check
31+
run: cargo check --verbose
3032
- name: Build
3133
run: cargo build --verbose
3234
- name: Run tests
3335
run: cargo test --verbose
36+
- name: Build (release)
37+
run: cargo build --release --verbose
3438

3539
build_lib_all_features:
3640

0 commit comments

Comments
 (0)