CI: Remove cross job

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.
This commit is contained in:
Tobin C. Harding 2024-08-07 07:00:14 +10:00
parent d600a6cf00
commit 0668943330
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 16 deletions

View File

@ -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