From b50b309096fee5c129f961158c12b443683d67ad Mon Sep 17 00:00:00 2001 From: Connor Ward Date: Mon, 24 Mar 2025 11:09:52 +0000 Subject: [PATCH] Fix Firedrake CI due to container changes --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac8af07b..d63c7644 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,7 +177,7 @@ jobs: steps: - name: "Main script" run: | - cd /home/firedrake + cd /root python3 -m venv --system-site-packages myvenv export HOME="$(pwd)" @@ -191,7 +191,7 @@ jobs: git submodule update --init - . /home/firedrake/myvenv/bin/activate + . /root/myvenv/bin/activate pip install --editable . pip uninstall -y pytools @@ -199,7 +199,7 @@ jobs: pip install "git+https://github.com/inducer/pytools.git#egg=pytools" pip install "git+https://github.com/inducer/pymbolic.git#egg=pymbolic" - cd /home/firedrake/firedrake + cd /opt/firedrake # patch so exception messages get shown curl -L https://gist.githubusercontent.com/inducer/17d7134ace215f0df1f3627eac4195c7/raw/ec5470a7d8587b6e1f336f3ef1d0ece5e26f236a/firedrake-debug-patch.diff | patch -p1 -- GitLab