Merge pull request #123 from golang/master #362
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: LibAFL catch-hangs | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| smoke-catch-hangs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go (bootstrap) | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.5" | |
| - name: Export GOROOT_BOOTSTRAP | |
| run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV" | |
| - name: Set up Rust (nightly) | |
| uses: dtolnay/rust-toolchain@nightly | |
| - name: Build gosentry toolchain | |
| run: cd src && ./make.bash | |
| - name: Smoke (--catch-hangs via LibAFL timeouts) | |
| run: bash misc/gosentry/tests/smoke_use_libafl_catch_hangs.sh |