Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/crypto-bigint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ jobs:
- run: cargo build --all-features --benches

test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
Expand Down Expand Up @@ -89,13 +88,28 @@ jobs:
- target: x86_64-unknown-linux-gnu
rust: stable
args: --release

# 64-bit ARM Linux
- target: aarch64-unknown-linux-gnu
rust: stable
args: --release
runner: ubuntu-24.04-arm

# 64-bit ARM Darwin
- target: aarch64-apple-darwin
rust: stable
args: --release
runner: macos-latest

runs-on: ${{ matrix.runner != '' && matrix.runner || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
if: ${{ matrix.deps != '' }}
- run: cargo test --target ${{ matrix.target }} --no-default-features ${{ matrix.args }}
- run: cargo test --target ${{ matrix.target }} ${{ matrix.args }}
- run: cargo test --target ${{ matrix.target }} --all-features ${{ matrix.args }}
Expand All @@ -114,10 +128,6 @@ jobs:
strategy:
matrix:
include:
# ARM64
- target: aarch64-unknown-linux-gnu
rust: stable

# PPC32 (big endian)
- target: powerpc-unknown-linux-gnu
rust: stable
Expand Down