-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci] #0: Allow Users to provide extra tag for T3K choose your ow…
…n pipeline (#14873)
- Loading branch information
1 parent
a5c3006
commit 1ede74c
Showing
7 changed files
with
72 additions
and
6 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 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 |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 demo tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: true | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-demo-tests: | ||
|
@@ -23,7 +28,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-perf"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-perf | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Enable performance mode | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 frequent tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: true | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-frequent-tests: | ||
|
@@ -27,7 +32,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- uses: ./.github/actions/ensure-active-weka-mount | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 model perf tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: true | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
|
||
|
@@ -25,7 +30,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-perf"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-perf | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Enable performance mode | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 nightly tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: true | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-nightly-tests: | ||
|
@@ -18,7 +23,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Set up dynamic env vars for build | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ name: "[internal] T3000 unit tests impl" | |
|
||
on: | ||
workflow_call: | ||
inputs: | ||
extra-tag: | ||
required: true | ||
type: string | ||
default: "in-service" | ||
|
||
jobs: | ||
t3000-unit-tests: | ||
|
@@ -28,7 +33,11 @@ jobs: | |
ARCH_NAME: ${{ matrix.test-group.arch }} | ||
LOGURU_LEVEL: INFO | ||
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | ||
runs-on: ["arch-wormhole_b0", "config-t3000", "in-service", "pipeline-functional"] | ||
runs-on: | ||
- arch-wormhole_b0 | ||
- config-t3000 | ||
- pipeline-functional | ||
- ${{ inputs.extra-tag }} | ||
steps: | ||
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | ||
- name: Set up dynamic env vars for build | ||
|