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)