Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VirxEC authored Jul 6, 2024
1 parent 72a076a commit 07c3605
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ jobs:
rustup component add rust-src --toolchain nightly
- name: Build
run: RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-pc-windows-msvc --release
run: |
set RUSTFLAGS="-Zlocation-detail=none"
cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-pc-windows-msvc --release
- uses: actions/upload-artifact@v4
with:
name: windows
path: |
target/release/rl_ball_sym.dll
target/release/rl_ball_sym.lib
target/*/release/rl_ball_sym.dll
target/*/release/rl_ball_sym.lib
linux:
runs-on: ubuntu-latest
Expand All @@ -49,8 +51,8 @@ jobs:
with:
name: linux
path: |
target/release/librl_ball_sym.so
target/release/librl_ball_sym.a
target/*/release/librl_ball_sym.so
target/*/release/librl_ball_sym.a
publish:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 07c3605

Please sign in to comment.