Skip to content

Commit

Permalink
temp disable 32-bit support
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Aug 18, 2024
1 parent c70f7a2 commit ac0dbc6
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/yescrypt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,22 @@ jobs:
- run: ${{ matrix.deps }}
- run: cargo test

cross:
strategy:
matrix:
include:
- target: powerpc-unknown-linux-gnu
rust: 1.60.0 # MSRV
- target: powerpc-unknown-linux-gnu
rust: stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ${{ matrix.deps }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- uses: RustCrypto/actions/cross-install@master
- run: cross test --release --target ${{ matrix.target }}
# TODO(tarcieri): 32-bit support
# cross:
# strategy:
# matrix:
# include:
# - target: powerpc-unknown-linux-gnu
# rust: 1.60.0 # MSRV
# - target: powerpc-unknown-linux-gnu
# rust: stable
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: ${{ matrix.deps }}
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.rust }}
# targets: ${{ matrix.target }}
# - uses: RustCrypto/actions/cross-install@master
# - run: cross test --release --target ${{ matrix.target }}

0 comments on commit ac0dbc6

Please sign in to comment.