Trigger Compute Sanitizer #25
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: Trigger Compute Sanitizer | |
| # This workflow triggers compute-sanitizer runs for all libcudf tests weekly. | |
| # WARNING: This is very resource intensive and runs hundreds of GPU jobs. | |
| # For targeted testing, manually trigger compute-sanitizer-run.yaml with specific tool_name and test_names. | |
| on: | |
| schedule: | |
| - cron: '0 10 * * 6' # Weekly on Saturday at 10:00 UTC | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| trigger-racecheck: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Trigger racecheck | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh workflow run compute-sanitizer-run.yaml \ | |
| -f tool_name="racecheck" | |
| trigger-synccheck: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Trigger synccheck | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh workflow run compute-sanitizer-run.yaml \ | |
| -f tool_name="synccheck" |