Skip to content

Commit

Permalink
Add nightly trigger for executorch (#5003)
Browse files Browse the repository at this point in the history
I have the approval from ExecuTorch to onboard to Nova binary build
workflows pytorch/executorch#2363. That covers
wheel first. Once the PR lands, we can add a nightly trigger to start
generating ExecuTorch wheels.

I'm seeing pytorchbot with write access to the repo from `bunnylol oss
pytorch/executorch`, so I think this is the only step needed.
  • Loading branch information
huydhn authored Mar 13, 2024
1 parent 630817a commit 2cc10e5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/trigger_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
- tensorrt
- data
- fbgemm
- executorch
- all
jobs:
trigger:
Expand Down Expand Up @@ -83,3 +84,11 @@ jobs:
repository: pytorch/fbgemm
token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
path: fbgemm
- name: Trigger nightly executorch build
if: ${{ github.event_name == 'schedule' || inputs.domain == 'executorch' || inputs.domain == 'all' }}
uses: ./.github/actions/trigger-nightly
with:
ref: main
repository: pytorch/executorch
token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
path: executorch

0 comments on commit 2cc10e5

Please sign in to comment.