-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate nightly workloads. (#37)
- Loading branch information
1 parent
ba536bb
commit 70b591a
Showing
12 changed files
with
101 additions
and
145 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: nightly_trigger | ||
|
||
on: | ||
schedule: | ||
- cron: '0 21 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trigger_23: | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
ref: 23.lts.1+ | ||
- name: Trigger Nightly | ||
run: | | ||
set -x | ||
gh workflow run android_23.lts.1+ --ref 23.lts.1+ -f nightly=true | ||
gh workflow run evergreen_23.lts.1+ --ref 23.lts.1+ -f nightly=true | ||
gh workflow run linux_23.lts.1+ --ref 23.lts.1+ -f nightly=true | ||
gh workflow run raspi-2_23.lts.1+ --ref 23.lts.1+ -f nightly=true | ||
gh workflow run win32_23.lts.1+ --ref 23.lts.1+ -f nightly=true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
trigger_22: | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
ref: 22.lts.1+ | ||
- name: Trigger Nightly | ||
run: | | ||
set -x | ||
gh workflow run android_22.lts.1+ --ref 22.lts.1+ -f nightly=true | ||
gh workflow run evergreen_22.lts.1+ --ref 22.lts.1+ -f nightly=true | ||
gh workflow run linux_22.lts.1+ --ref 22.lts.1+ -f nightly=true | ||
gh workflow run raspi-2_22.lts.1+ --ref 22.lts.1+ -f nightly=true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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