-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow for running models ops test generated by model analysis (#…
- Loading branch information
1 parent
e0771b3
commit e251bc4
Showing
2 changed files
with
33 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: On Nightly Models Ops | ||
|
||
on: | ||
workflow_dispatch: | ||
# Temporarily disabled the scheduled run configuration because there are currently no tests | ||
# marked with 'nightly_models_ops' in main branch. When model ops tests are added, uncomment the schedule below to | ||
# automatically run them at 02:00 AM UTC every day. | ||
# schedule: | ||
# - cron: '0 2 * * *' # Runs at 02:00 AM UTC every day | ||
|
||
jobs: | ||
docker-build: | ||
uses: ./.github/workflows/build-image.yml | ||
secrets: inherit | ||
build: | ||
needs: docker-build | ||
uses: ./.github/workflows/build.yml | ||
secrets: inherit | ||
with: | ||
docker-image: ${{ needs.docker-build.outputs.docker-image }} | ||
test: | ||
needs: | ||
- docker-build | ||
- build | ||
uses: ./.github/workflows/test.yml | ||
secrets: inherit | ||
with: | ||
test_mark: 'nightly_models_ops' | ||
test_group_cnt: 4 | ||
test_group_ids: '[1,2,3,4]' | ||
docker-image: ${{ needs.docker-build.outputs.docker-image }} | ||
runs-on: '[{"runs-on": "n150"}]' |
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