Skip to content

Commit

Permalink
more nvhpc deadsnakes ci fix attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
ptheywood committed Jan 9, 2024
1 parent 3d0faed commit de2531f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/NVHPC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ jobs:
python${{ env.PYTHON }} -m venv .venv
source .venv/bin/activate
# manually add venv dirs to the path and env for later steps
ls .venv
echo "$(pwd)/venv/bin"
echo "$(readlink -f ./venv/bin/)" >> $GITHUB_PATH
echo "$(readlink -f ./venv/bin/) GITHUB_PATH"
echo "VIRTUAL_ENV=$(readlink -f ./venv/) $GITHUB_ENV"
Expand Down Expand Up @@ -190,8 +192,8 @@ jobs:
-DFLAMEGPU_BUILD_TESTS="${{ env.FLAMEGPU_BUILD_TESTS }}"
-DFLAMEGPU_BUILD_PYTHON="${{ env.FLAMEGPU_BUILD_PYTHON }}"
-DPYTHON3_EXACT_VERSION="${{ env.PYTHON }}"
-DPython3_ROOT_DIR="venv/bin"
-DPython3_EXECUTABLE="venv/bin/python${{ env.python }}"
-DPython3_ROOT_DIR="$(readlink -f venv/bin)"
-DPython3_EXECUTABLE="$(readlink -f venv/bin/python${{ env.PYTHON }})"
-DFLAMEGPU_VISUALISATION="${{ env.VISUALISATION }}"
-DFLAMEGPU_ENABLE_NVTX="ON"
Expand Down

0 comments on commit de2531f

Please sign in to comment.