Enable torch compile for python 3.11 smoke tests #1064
Workflow file for this run
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 release binaries | |
name: cron | |
on: | |
schedule: | |
# At 3 am UTC (7 am PDT) | |
- cron: "0 3 * * *" | |
# Have the ability to trigger this job manually through the API | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/validate-release-binaries.yml | |
- .github/workflows/validate-linux-binaries.yml | |
- .github/workflows/validate-windows-binaries.yml | |
- .github/workflows/validate-macos-binaries.yml | |
- .github/workflows/validate-macos-arm64-binaries.yml | |
- test/smoke_test/* | |
pull_request: | |
paths: | |
- .github/workflows/validate-nightly-binaries.yml | |
- .github/workflows/validate-linux-binaries.yml | |
- .github/workflows/validate-windows-binaries.yml | |
- .github/workflows/validate-macos-binaries.yml | |
- .github/workflows/validate-macos-arm64-binaries.yml | |
- .github/scripts/validate_binaries.sh | |
- test/smoke_test/* | |
jobs: | |
release: | |
uses: ./.github/workflows/validate-binaries.yml | |
with: | |
channel: release | |
os: all |