Skip to content

Commit

Permalink
#6759: enable watcher on all post-commit pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
TT-billteng committed Apr 3, 2024
1 parent 47870f5 commit 852b614
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/cpp-post-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
CONFIG: ci
LOGURU_LEVEL: INFO
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib
TT_METAL_WATCHER: 60
runs-on: ${{ matrix.runner-info.runs-on }}
steps:
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected]
Expand All @@ -49,3 +50,9 @@ jobs:
cd $TT_METAL_HOME
export PYTHONPATH=$TT_METAL_HOME
${{ matrix.test-group.cmd }}
- name: Upload watcher log
if: always()
uses: actions/upload-artifact@v4
with:
name: watcher-log-${{ matrix.runner-info.arch }}-${{ matrix.runner-info.name }}
path: built/watcher.log
7 changes: 7 additions & 0 deletions .github/workflows/fast-dispatch-build-and-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
CONFIG: ci
LOGURU_LEVEL: INFO
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib
TT_METAL_WATCHER: 60
runs-on: ${{ matrix.runner-info.runs-on }}
steps:
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected]
Expand All @@ -62,6 +63,12 @@ jobs:
cd $TT_METAL_HOME
export PYTHONPATH=$TT_METAL_HOME
${{ matrix.test-group.cmd }}
- name: Upload watcher log
if: always()
uses: actions/upload-artifact@v4
with:
name: watcher-log-${{ matrix.runner-info.arch }}-${{ matrix.runner-info.name }}
path: built/watcher.log
build-docs:
strategy:
# Do not fail-fast because we need to ensure all tests go to completion
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/models-post-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
CONFIG: ci
LOGURU_LEVEL: INFO
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib
TT_METAL_WATCHER: 60
runs-on: ${{ matrix.runner-info.runs-on }}
steps:
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected]
Expand All @@ -49,3 +50,9 @@ jobs:
cd $TT_METAL_HOME
export PYTHONPATH=$TT_METAL_HOME
${{ matrix.test-group.cmd }}
- name: Upload watcher log
if: always()
uses: actions/upload-artifact@v4
with:
name: watcher-log-${{ matrix.runner-info.arch }}-${{ matrix.runner-info.name }}
path: built/watcher.log
7 changes: 7 additions & 0 deletions .github/workflows/ttnn-post-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
CONFIG: ci
LOGURU_LEVEL: INFO
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib
TT_METAL_WATCHER: 60
runs-on: ${{ matrix.runner-info.runs-on }}
steps:
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected]
Expand All @@ -51,3 +52,9 @@ jobs:
cd $TT_METAL_HOME
export PYTHONPATH=$TT_METAL_HOME
${{ matrix.test-group.cmd }}
- name: Upload watcher log
if: always()
uses: actions/upload-artifact@v4
with:
name: watcher-log-${{ matrix.runner-info.arch }}-${{ matrix.runner-info.name }}
path: built/watcher.log

0 comments on commit 852b614

Please sign in to comment.