diff --git a/.github/workflows/cpp-post-commit.yaml b/.github/workflows/cpp-post-commit.yaml index 222a0023122e..6a8bab687924 100644 --- a/.github/workflows/cpp-post-commit.yaml +++ b/.github/workflows/cpp-post-commit.yaml @@ -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/checkout-with-submodule-lfs@v2.0.0 @@ -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 }}-${{ matrix.test-group.name }} + path: generated/watcher/watcher.log diff --git a/.github/workflows/fast-dispatch-build-and-unit-tests.yaml b/.github/workflows/fast-dispatch-build-and-unit-tests.yaml index cd0bbb2228e6..21f232558082 100644 --- a/.github/workflows/fast-dispatch-build-and-unit-tests.yaml +++ b/.github/workflows/fast-dispatch-build-and-unit-tests.yaml @@ -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/checkout-with-submodule-lfs@v2.0.0 @@ -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 }}-${{ matrix.test-group.name }} + path: generated/watcher/watcher.log build-docs: strategy: # Do not fail-fast because we need to ensure all tests go to completion diff --git a/.github/workflows/models-post-commit.yaml b/.github/workflows/models-post-commit.yaml index e3a72691c4a7..8c4117c47df6 100644 --- a/.github/workflows/models-post-commit.yaml +++ b/.github/workflows/models-post-commit.yaml @@ -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/checkout-with-submodule-lfs@v2.0.0 @@ -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 }}-${{ matrix.test-group.name }} + path: generated/watcher/watcher.log diff --git a/.github/workflows/ttnn-post-commit.yaml b/.github/workflows/ttnn-post-commit.yaml index 4acafec0eb97..bfbc7ec6c512 100644 --- a/.github/workflows/ttnn-post-commit.yaml +++ b/.github/workflows/ttnn-post-commit.yaml @@ -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/checkout-with-submodule-lfs@v2.0.0 @@ -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 }}-${{ matrix.test-group.name }} + path: generated/watcher/watcher.log