Skip to content

Commit

Permalink
Fix HOME
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Feb 21, 2025
1 parent f6bfa2d commit 20a50ec
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tsfc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
# packages
PYTHONPATH: /home/firedrake/firedrake:/home/firedrake/.local/lib/python3.12/site-packages
steps:
- name: Fix HOME
run: |
: # For unknown reasons GitHub actions overwrite HOME to /github/home
: # which will break everything unless fixed
: # (https://github.com/actions/runner/issues/863)
echo "HOME=/home/firedrake" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
with:
# Download UFL into a subdirectory not called 'ufl' to make sure
Expand All @@ -31,7 +38,7 @@ jobs:

- name: Uninstall existing UFL
run: |
python3 -m pip uninstall -y ufl
python3 -m pip uninstall --break-system-packages -y ufl
- name: Create virtual environment
run: |
Expand Down

0 comments on commit 20a50ec

Please sign in to comment.