Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
git submodule init
git submodule update
pip uninstall ${REPO_NAME} -y || true
pip install -e .[dev]
pip install --no-build-isolation .[dev]

- run: make lint

Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.firedrake-parmmg
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ARG BRANCH="main"

WORKDIR /root

# Ensure /github/home/.cache/pip is editable by the user
RUN mkdir -p /github/home/.cache/pip && chmod -R 777 /github/home/.cache/pip

# Install Thetis
RUN pip install --verbose --src . -e git+https://github.com/thetisproject/thetis.git#egg=thetis

Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.firedrake-parmmg_release
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ARG BRANCH="main"

WORKDIR /root

# Ensure /github/home/.cache/pip is editable by the user
RUN mkdir -p /github/home/.cache/pip && chmod -R 777 /github/home/.cache/pip

# Install Thetis
RUN pip install --verbose --src . -e git+https://github.com/thetisproject/thetis.git#egg=thetis

Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PACKAGE ?=
OPTIONS ?=
NAMESPACE = ghcr.io/mesh-adaptation
IMAGE = $(PACKAGE)
TAG = latest
TAG ?=
USERNAME ?=
TOKEN ?=

Expand Down