Skip to content

Commit

Permalink
fix(github action):fix release building
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed Apr 10, 2024
1 parent 086e66e commit e6c400e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/rust_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
export MIRIFLAGS="-Zmiri-disable-isolation"
- name: Build
run: cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
run: cargo test --all
- name: Run tests Release
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rust_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
export MIRIFLAGS="-Zmiri-disable-isolation"
- name: Build
run: cargo build --all
- name: Run tests Debug
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
run: cargo test --all
- name: Run tests Release
run: cargo test --all --release
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rust_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
setx MIRIFLAGS "-Zmiri-disable-isolation"
- name: Build
run: cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
run: cargo test --all
- name: Run tests Release
Expand Down

0 comments on commit e6c400e

Please sign in to comment.