Skip to content

Commit

Permalink
env testing
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Feb 21, 2025
1 parent 182d0b2 commit 880ac91
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tsfc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ jobs:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#docker-container-filesystem
options: --user root
env:
PYTHONPATH: /home/firedrake/.local/lib/python3.12/site-packages
PYTHONPATH: /home/firedrake/firedrake:/home/firedrake/.local/lib/python3.12/site-packages
steps:
- name: Fix HOME
- name: Fix HOME and PATH
# For unknown reasons GitHub actions overwrite HOME to /github/home
# which will break everything unless fixed
# (https://github.com/actions/runner/issues/863)
run: echo "HOME=/home/firedrake" >> "$GITHUB_ENV"
run: |
echo "HOME=/home/firedrake" >> "$GITHUB_ENV"
echo "/home/firedrake/.local/bin" >> "$GITHUB_PATH"
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 880ac91

Please sign in to comment.