test: Add explicit tests of empty bitflags types (#527) #1086
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
name: 32-bit CI | |
jobs: | |
run-tests: | |
runs-on: ${{ matrix.os }} | |
#container: | |
# image: ubuntu:20.10 | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust: | |
- stable | |
- 1.71.0 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Install Linux tooling for 32 bit builds | |
run: | | |
sudo apt-get update -y | |
sudo apt-get -f install gcc-multilib | |
- name: Install rust tooling for 32 bit builds | |
run: | | |
rustup target install i686-unknown-linux-gnu | |
- name: cargo check | |
run: | | |
cargo hack check --all-targets --target=i686-unknown-linux-gnu --feature-powerset | |
- name: cargo tests | |
run: | | |
cargo hack test --target=i686-unknown-linux-gnu --feature-powerset | |
- name: cargo doc tests | |
run: | | |
cargo hack test --doc --target=i686-unknown-linux-gnu --feature-powerset |