Skip to content

Commit

Permalink
CI: Build for x86_64-unknown-linux-gnux32.
Browse files Browse the repository at this point in the history
We cannot run the tests on the Ubuntu runners but we can build then.
  • Loading branch information
briansmith committed Jun 7, 2024
1 parent 10a0ae0 commit 37e1003
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,20 @@ jobs:
- run: cargo test --no-run --target=aarch64-apple-ios --features=std
- run: cargo test --no-run --target=aarch64-apple-watchos-sim -Zbuild-std --features=std

build-link:
name: Build/Link
runs-on: ubuntu-22.04
strategy:
matrix:
target: [
x86_64-unknown-linux-gnux32,
]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
- name: Build Tests
run: cargo test --no-run --target=${{ matrix.target }} --features=std

cross-link:
name: Cross Build/Link
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 37e1003

Please sign in to comment.