This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Add almalinux-builder for 12.6 cuda validation (#2049) #1357
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
| # Scheduled validation of the nightly binaries | |
| name: cron | |
| on: | |
| schedule: | |
| # At 3:30 pm UTC (8:30 am PDT) | |
| - cron: "30 15 * * *" | |
| # Have the ability to trigger this job manually through the API | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/validate-nightly-binaries.yml | |
| - .github/workflows/validate-linux-binaries.yml | |
| - .github/workflows/validate-windows-binaries.yml | |
| - .github/workflows/validate-macos-arm64-binaries.yml | |
| - test/smoke_test/* | |
| jobs: | |
| nightly: | |
| uses: ./.github/workflows/validate-binaries.yml | |
| with: | |
| channel: nightly | |
| os: all | |
| use_split_build: true | |
| use-meta-cdn: true |