Skip to content

Commit

Permalink
Fix up pdm env errors in back-end build
Browse files Browse the repository at this point in the history
  • Loading branch information
vjf authored Aug 29, 2024
1 parent 777bd10 commit 43b0f9a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ jobs:
pip install pdm
- name: Install dependencies
run: |
pdm install
# Remove old venv
pdm venv remove -y for-backend-build
# Create new venv
pdm venv create --with-pip --name for-backend-build 3.10
eval $(pdm venv activate for-backend-build)
pdm install --venv for-backend-build
- name: Make boreholes
run: |
pdm run $SHELL
eval $(pdm venv activate for-backend-build)
# Temporarily, a patched version of assimp lives in the 'test' dir
# It was installed and built via 'pdm install'
ASSIMP_VER=5.2.5
Expand Down

0 comments on commit 43b0f9a

Please sign in to comment.