Fuzz #67
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
| ###### | |
| ## DO NOT EDIT THIS FILE DIRECTLY. It is generated by generate-fuzz.sh. | |
| ## Edit that script instead and re-run it. | |
| ###### | |
| name: Fuzz | |
| on: | |
| schedule: | |
| # 5am every day UTC, this correlates to: | |
| # - 10pm PDT | |
| # - 6am CET | |
| # - 4pm AEDT | |
| - cron: '00 05 * * *' | |
| permissions: {} | |
| jobs: | |
| fuzz: | |
| if: ${{ !github.event.act }} | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| fuzz_target: [ | |
| deserialize_block, | |
| deserialize_output, | |
| deserialize_pset, | |
| deserialize_transaction, | |
| ] | |
| steps: | |
| - name: Install test dependencies | |
| run: sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 | |
| id: cache-fuzz | |
| with: | |
| path: | | |
| ~/.cargo/bin | |
| fuzz/target | |
| target | |
| key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} | |
| - uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6 # stable | |
| with: | |
| toolchain: '1.74.0' | |
| - name: fuzz | |
| run: | | |
| echo "Using RUSTFLAGS $RUSTFLAGS" | |
| cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}" | |
| - run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }} | |
| - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 | |
| with: | |
| name: executed_${{ matrix.fuzz_target }} | |
| path: executed_${{ matrix.fuzz_target }} | |
| verify-execution: | |
| if: ${{ !github.event.act }} | |
| needs: fuzz | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 | |
| - run: cargo install --locked --version 0.12.0 cargo-fuzz | |
| - name: Display structure of downloaded files | |
| run: ls -R | |
| - run: find executed_* -type f -exec cat {} + | sort > executed | |
| - run: cargo fuzz list | sort | diff - executed |