|
99 | 99 | gh_token: ${{ secrets.GITHUB_TOKEN }} |
100 | 100 | incident_io_alert_token: ${{ secrets.INCIDENT_IO_ALERT_TOKEN }} |
101 | 101 |
|
| 102 | + # ============================================================================ |
| 103 | + # Array Operations Fuzzer (unstable encodings) |
| 104 | + # ============================================================================ |
| 105 | + ops_fuzz_unstable: |
| 106 | + name: "Array Operations Fuzz (unstable)" |
| 107 | + uses: ./.github/workflows/run-fuzzer.yml |
| 108 | + with: |
| 109 | + fuzz_target: array_ops_unstable_encodings |
| 110 | + extra_features: "vortex/unstable_encodings" |
| 111 | + jobs: 16 |
| 112 | + secrets: |
| 113 | + R2_FUZZ_ACCESS_KEY_ID: ${{ secrets.R2_FUZZ_ACCESS_KEY_ID }} |
| 114 | + R2_FUZZ_SECRET_ACCESS_KEY: ${{ secrets.R2_FUZZ_SECRET_ACCESS_KEY }} |
| 115 | + |
| 116 | + report-ops-unstable-fuzz-failures: |
| 117 | + name: "Report Array Ops (unstable) Fuzz Failures" |
| 118 | + needs: ops_fuzz_unstable |
| 119 | + if: always() && needs.ops_fuzz_unstable.outputs.crashes_found == 'true' |
| 120 | + permissions: |
| 121 | + issues: write |
| 122 | + contents: read |
| 123 | + id-token: write |
| 124 | + pull-requests: read |
| 125 | + uses: ./.github/workflows/report-fuzz-crash.yml |
| 126 | + with: |
| 127 | + fuzz_target: array_ops_unstable_encodings |
| 128 | + crash_file: ${{ needs.ops_fuzz_unstable.outputs.first_crash_name }} |
| 129 | + artifact_url: ${{ needs.ops_fuzz_unstable.outputs.artifact_url }} |
| 130 | + artifact_name: array_ops_unstable_encodings-crash-artifacts |
| 131 | + logs_artifact_name: array_ops_unstable_encodings-logs |
| 132 | + branch: ${{ github.ref_name }} |
| 133 | + commit: ${{ github.sha }} |
| 134 | + secrets: |
| 135 | + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} |
| 136 | + gh_token: ${{ secrets.GITHUB_TOKEN }} |
| 137 | + incident_io_alert_token: ${{ secrets.INCIDENT_IO_ALERT_TOKEN }} |
| 138 | + |
102 | 139 | # ============================================================================ |
103 | 140 | # FSST LIKE Fuzzer |
104 | 141 | # ============================================================================ |
|
0 commit comments