From e368cf05d6a76b1ae7970a15e2f4c09fcc6cde2b Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <67598845+hyperpolymath@users.noreply.github.com> Date: Sat, 16 May 2026 11:48:35 +0100 Subject: [PATCH] fix(ci): hypatia-scan workdir (${{ env.HOME }} resolves empty) The Build step set working-directory: ${{ env.HOME }}/hypatia, but env.HOME is not a workflow env var, so it resolved to /hypatia and the job failed with 'No such file or directory'. GitHub-hosted ubuntu runners always have HOME=/home/runner; pin the path accordingly. Unblocks the 'Hypatia Neurosymbolic Analysis' check estate-wide. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/hypatia-scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hypatia-scan.yml b/.github/workflows/hypatia-scan.yml index cb6c838..7511437 100644 --- a/.github/workflows/hypatia-scan.yml +++ b/.github/workflows/hypatia-scan.yml @@ -38,7 +38,7 @@ jobs: fi - name: Build Hypatia scanner (if needed) - working-directory: ${{ env.HOME }}/hypatia + working-directory: /home/runner/hypatia run: | if [ ! -f hypatia-v2 ]; then echo "Building hypatia-v2 scanner..."