Skip to content

Commit

Permalink
Fix linux tests
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow committed Dec 28, 2023
1 parent 81c4455 commit 58da85a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@ jobs:
- name: Check (all features)
run: cargo check --target i686-unknown-linux-gnu --locked --features all

- name: Build (debug) (all features)
run: cargo build --target i686-unknown-linux-gnu --locked --features all

- name: Run tests (all features)
run: cargo test --target i686-unknown-linux-gnu --locked --features all
env:
BYOND_BIN: /home/runner/BYOND/byond/bin

- name: Build (release) (all features)
run: cargo build --target i686-unknown-linux-gnu --locked --release --features all

Expand All @@ -81,11 +89,6 @@ jobs:
target/i686-unknown-linux-gnu/release/librust_g.so
target/rust_g.dm
- name: Run tests (all features)
run: cargo test --target i686-unknown-linux-gnu --locked --features all
env:
BYOND_BIN: /home/runner/BYOND/byond/bin

- name: Build (release) (default features)
run: cargo build --target i686-unknown-linux-gnu --locked --release

Expand Down

0 comments on commit 58da85a

Please sign in to comment.