Skip to content

Commit

Permalink
Fix torchtext nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Dec 19, 2022
1 parent d5d4928 commit 788b3d1
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/validate-binaries.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Validate binaries

on:
pull_request:
paths:
- .github/workflows/validate-binaries.yml
- .github/scripts/validate-binaries.sh
workflow_call:
inputs:
channel:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/validate-nightly-binaries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Scheduled validation of the nightly binaries
name: cron

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:
push:
branches:
- main
paths:
- .github/workflows/validate-nightly-binaries.yml
- .github/workflows/validate-binaries.yml
- .github/scripts/validate-binaries.sh
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

0 comments on commit 788b3d1

Please sign in to comment.