infra: Bump startup timeout to 10min #562
This file contains hidden or 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: Rust | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '**' | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build-crates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install rust nightly | |
| run: rustup install nightly && rustup override set nightly | |
| - name: Build workspace | |
| run: cargo build --verbose --workspace | |
| - name: Test workspace | |
| run: cargo test --verbose --workspace | |
| validate-configs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install rust nightly | |
| run: rustup install nightly && rustup override set nightly | |
| - name: Build validate-configs | |
| run: | | |
| cd fuzzor-cmds && cargo build --bin validate-config --release --verbose | |
| find ../projects/ -type f -name 'config.yaml' -exec target/release/validate-config {} \; | |