Skip to content

Commit

Permalink
Try without venv inside Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
afuller-TT committed Dec 9, 2024
1 parent eae2559 commit 71a1bc7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
12 changes: 0 additions & 12 deletions .github/actions/docker-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ inputs:
default: |
-v /dev/hugepages-1G:/dev/hugepages-1G
--device /dev/tenstorrent
prepare_metal_run:
description: "Prepare the environment for running Metalium"
type: boolean
required: false
default: false
install_wheel:
description: "Install the wheel that contains all of the Python environment. The artifact needs to be present."
type: boolean
Expand Down Expand Up @@ -94,13 +89,6 @@ runs:
run: |
set -eu
prepare_metal_run=${{ inputs.prepare_metal_run }}
if [[ "${prepare_metal_run,,}" == "true" ]]; then
rm -rf ${PYTHON_ENV_DIR}
./create_venv.sh
source python_env/bin/activate
fi
install_wheel=${{ inputs.install_wheel }}
if [[ "${install_wheel,,}" == "true" ]]; then
WHEEL_FILENAME=$(ls -1 *.whl)
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-and-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
with:
docker_os_arch: ${{ inputs.os }}-amd64
docker_password: ${{ secrets.GITHUB_TOKEN }}
prepare_metal_run: true
docker_opts: |
-e ARCH_NAME=${{ inputs.arch}}
-e TT_METAL_HOME=${{ github.workspace }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cpp-post-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ jobs:
with:
docker_os_arch: ${{ inputs.os }}-amd64
docker_password: ${{ secrets.GITHUB_TOKEN }}
prepare_metal_run: true
docker_opts: |
-e TT_METAL_HOME=${{ github.workspace }}
-e ARCH_NAME=${{ inputs.arch }}
Expand Down

0 comments on commit 71a1bc7

Please sign in to comment.