Skip to content

Commit

Permalink
Try adjusting env vars / paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd committed Aug 1, 2024
1 parent e4bf78a commit 3c36a26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ jobs:

- name: "Building runtime"
env:
IREE_BUILD_SETUP_PYTHON_VENV: build-runtime/.venv
IREE_BUILD_SETUP_PYTHON_VENV: ${{ env.BUILD_DIR }}/.venv
run: bash ./build_tools/cmake/build_runtime.sh "${BUILD_DIR}"
- name: "Testing runtime"
run: bash ./build_tools/cmake/ctest_all.sh "${BUILD_DIR}"
Expand Down
2 changes: 1 addition & 1 deletion build_tools/cmake/setup_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [[ ! -z "${IREE_BUILD_SETUP_PYTHON_VENV:-}" ]]; then
else
source "$IREE_BUILD_SETUP_PYTHON_VENV/bin/activate"
fi
IREE_PYTHON3_EXECUTABLE="$IREE_BUILD_SETUP_PYTHON_VENV/bin/python"
IREE_PYTHON3_EXECUTABLE="$(realpath ${IREE_BUILD_SETUP_PYTHON_VENV}/bin/python)"
python -m pip install -r runtime/bindings/python/iree/runtime/build_requirements.txt
else
# Just use the host python and yolo with what may be installed.
Expand Down

0 comments on commit 3c36a26

Please sign in to comment.