diff --git a/.github/actions/prepare-metal-run/action.yml b/.github/actions/prepare-metal-run/action.yml new file mode 100644 index 000000000000..ef47badf941c --- /dev/null +++ b/.github/actions/prepare-metal-run/action.yml @@ -0,0 +1,16 @@ +name: Prepare Metal Run +description: "Installs Python Dependencies from cache or from PyPI if cache is not available. +Uses pyproject.toml and requirements-dev.txt as cache keys." + +jobs: + prepare: + runs-on: ubuntu-latest + + steps: + - uses: tenstorrent-metal/metal-workflows/.github/actions/checkout-with-submodule-lfs@v2.0.0 + - uses: actions/download-artifact@v4 + with: + name: TTMetal_build_${{ matrix.runner-info.arch }} + - name: Extract files + run: tar -xvf ttm_${{ matrix.runner-info.arch }}.tar + - uses: ./.github/actions/install-python-deps