Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Nov 22, 2024
1 parent 0d32312 commit 27494e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
run: rm -rf pip_venv

- name: Create a venv
run: python3 -m venv pip_venv
run: |
python3 -m venv pip_venv
ln -s /__w/firedrake/firedrake/src pip_venv/
- uses: actions/checkout@v4
with:
Expand All @@ -58,7 +60,6 @@ jobs:
run: |
source pip_venv/bin/activate
python -m pip install 'rtree>=1.2'
mkdir -p pip_venv/src
cd pip_venv/src
git clone https://github.com/firedrakeproject/libsupermesh.git
cd libsupermesh
Expand All @@ -77,7 +78,6 @@ jobs:
- name: Pip install
run: |
ln -s /__w/firedrake/firedrake/src pip_venv/
source pip_venv/bin/activate
cd pip_venv/src
export CC="$MPICH_DIR/mpicc"
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ def __getitem__(self, key):
# -lsupermesh \
# -Wl,-rpath,$ORIGIN/../../supermesh
supermesh_ = ExternalDependency(
include_dirs=[sys.prefix],
library_dirs=[sys.prefix],
libraries=["supermesh"],
)

Expand Down

0 comments on commit 27494e5

Please sign in to comment.