From 80f1c69fcada201adf644219eaedb09c927d0232 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Tue, 2 Nov 2021 21:58:30 +1000 Subject: [PATCH] add a big endian target to CI --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e31bf59..8597f8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,6 +106,26 @@ jobs: - name: Fast rng run: wasm-pack test --node -- --features "js v4 fast-rng" + + mips: + name: Tests / MIPS (Big Endian) + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v2 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - name: Install Cross + run: cargo install cross + + - name: Default features + run: cross test --target mips-unknown-linux-gnu embedded: name: Build / Embedded