[Policy V2] Add tools to support key & policy auto generation and auto update td info into tcb_mapping.json #709
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: oss-fuzz | |
| on: [pull_request] | |
| permissions: {} | |
| jobs: | |
| Fuzzing: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Build Fuzzers | |
| id: build | |
| uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@1bdba6f59f138b9d224f18806921b79420eac145 # master | |
| with: | |
| oss-fuzz-project-name: 'migtd' | |
| language: rust | |
| - name: Run Fuzzers | |
| uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@1bdba6f59f138b9d224f18806921b79420eac145 # master | |
| with: | |
| oss-fuzz-project-name: 'migtd' | |
| language: rust | |
| fuzz-seconds: 600 | |
| output-sarif: true | |
| - name: Upload Crash | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 | |
| if: failure() && steps.build.outcome == 'success' | |
| with: | |
| name: artifacts | |
| path: ./out/artifacts | |
| - name: Upload Sarif | |
| if: always() && steps.build.outcome == 'success' | |
| uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v3.29.5 | |
| with: | |
| # Path to SARIF file relative to the root of the repository | |
| sarif_file: cifuzz-sarif/results.sarif | |
| checkout_path: cifuzz-sarif |