Skip to content

Commit

Permalink
CI: Remove cross job
Browse files Browse the repository at this point in the history
We have a `Cross` job in `rust.yml` and also a `cross` workflow. The
workflow is a superset of the job, remove the redundant job.
  • Loading branch information
tcharding committed Aug 8, 2024
1 parent 22b8b3f commit b8a35e6
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,22 +88,6 @@ jobs:
- name: Run test on i686
run: cargo test --target i686-unknown-linux-gnu

Cross:
name: Cross test
if: ${{ !github.event.act }}
runs-on: ubuntu-latest
steps:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Checkout Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install target
run: rustup target add s390x-unknown-linux-gnu
- name: install cross
run: cargo install cross --locked
- name: run cross test
run: cross test --target s390x-unknown-linux-gnu

WASM:
name: WASM
runs-on: ubuntu-latest
Expand Down

0 comments on commit b8a35e6

Please sign in to comment.