-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move common steps to run tox env into reusable workflow (#247)
* Move common steps to run tox env to reusable workflow * Add strategy and runs-on to CPU build * Revert "Add strategy and runs-on to CPU build" This reverts commit 2c9aad4. --------- Co-authored-by: Karl Higley <karlb@nvidia.com>
- Loading branch information
1 parent
4b3ec51
commit d4f1c6e
Showing
6 changed files
with
49 additions
and
170 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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: "Test Merlin" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
tags: | ||
- v* | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
dataloader: | ||
name: "Dataloader (CPU)" | ||
uses: ./.github/workflows/tox.yml | ||
with: | ||
env: test-dataloader-cpu | ||
|
||
systems: | ||
name: "Systems (CPU)" | ||
uses: ./.github/workflows/tox.yml | ||
with: | ||
env: test-systems-cpu | ||
|
||
models: | ||
name: "Models (CPU)" | ||
uses: ./.github/workflows/tox.yml | ||
with: | ||
env: test-models-cpu | ||
|
||
nvtabular: | ||
name: "NVTabular (CPU)" | ||
uses: ./.github/workflows/tox.yml | ||
with: | ||
env: test-nvtabular-cpu |
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