From 57dbbacc00f5edb59824e01c195b53b100f1b90c Mon Sep 17 00:00:00 2001 From: Dimitri Gnidash Date: Fri, 20 Sep 2024 13:24:04 -0400 Subject: [PATCH] #12775: Use a folder not right under root --- .github/actions/docker-run/action.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/actions/docker-run/action.yml b/.github/actions/docker-run/action.yml index 5128ccdc1f1..645416bc1d2 100644 --- a/.github/actions/docker-run/action.yml +++ b/.github/actions/docker-run/action.yml @@ -64,16 +64,14 @@ runs: options: | -u ${{ env.RUNNER_UID }}:${{ env.RUNNER_GID }} --rm - -v ${{ github.workspace }}:/github_workspace + -v ${{ github.workspace }}:${{ github.workspace }} --net=host ${{ inputs.docker_opts }} -e LOGURU_LEVEL=${{ env.LOGURU_LEVEL }} - -e PYTHONPATH=/github_workspace + -e PYTHONPATH=${{ github.workspace }} ${{ inputs.device }} + -w ${{ github.workspace }} run: | - cd github_workspace - python3 -m venv python_env - source python_env/bin/activate if [ ${{ inputs.install_wheel }} ]; then rm -rf tt_metal tt_eager WHEEL_FILENAME=$(ls -1 *.whl)