Cron job to validate TorchData Nightly Binaries #602
This file contains 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 job to validate TorchData Nightly Binaries | |
on: | |
schedule: | |
# At 5:30 pm UTC (7:30 am PDT) | |
- cron: "30 17 * * *" | |
# Have the ability to trigger this job manually through the API | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- .github/workflows/validate-nightly-binaries.yml | |
- .github/workflows/validate-binaries.yml | |
- .github/scripts/validate_binaries.sh | |
jobs: | |
nightly: | |
uses: ./.github/workflows/validate-binaries.yml | |
with: | |
channel: nightly | |
os: all |