Check All Features #19
Workflow file for this run
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
name: Check All Features | |
on: | |
workflow_dispatch: | |
inputs: | |
max: | |
default: "2" | |
clean: | |
default: "60" | |
env: | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: '--codegen=debuginfo=0 --deny=warnings' | |
RUSTDOCFLAGS: '--deny=warnings' | |
CARGO_TERM_COLOR: always | |
ZNG_TP_LICENSES: false | |
jobs: | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
chunk: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] | |
profile: ["", --release] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: sudo apt install libfontconfig1-dev | |
- run: cargo do check-all-features ${{ matrix.profile }} --max ${{ github.event.inputs.max }} --clean ${{ github.event.inputs.clean }} --chunk "${{ matrix.chunk }}/12" | |
- run: cargo clean |