include bunch of updates #53
Workflow file for this run
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: Lints | |
| on: | |
| merge_group: | |
| pull_request: | |
| types: [ synchronize, opened, reopened, ready_for_review ] | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
| jobs: | |
| lints: | |
| name: Various lints | |
| timeout-minutes: 30 | |
| runs-on: [self-hosted, x64, linux, gpu] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| components: rustfmt, clippy, rust-src | |
| targets: riscv32im-unknown-none-elf | |
| # TODO: figure out way to keep this in sync with rust-toolchain.toml automatically | |
| toolchain: nightly-2025-08-18 | |
| - name: Give Github Action access to ceno-gpu | |
| uses: webfactory/ssh-agent@v0.9.0 | |
| with: | |
| ssh-private-key: | | |
| ${{ secrets.SECRET_FOR_CENO_GPU }} | |
| - name: Cargo cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| bin/ceno-client-eth | |
| key: lint-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: lint-${{ runner.os }}-cargo- | |
| - name: Install m4 | |
| run: sudo apt-get install -y m4 | |
| - name: Install cargo make | |
| run: | | |
| cargo make --version || cargo install cargo-make | |
| - name: Run clippy | |
| env: | |
| RUSTFLAGS: "-Dwarnings" | |
| run: | | |
| cargo make clippy |