Skip to content

Commit 3fb80f1

Browse files
hyperpolymathtanush5800claude
authored
fix(ci): hypatia-scan workdir (${{ env.HOME }} resolves empty) (#9)
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: Jonathan D.A. Jewell <67598845+hyperpolymath@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3669891 commit 3fb80f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
fi
4242
4343
- name: Build Hypatia scanner (if needed)
44-
working-directory: ${{ env.HOME }}/hypatia
44+
working-directory: /home/runner/hypatia
4545
run: |
4646
if [ ! -f hypatia-v2 ]; then
4747
echo "Building hypatia-v2 scanner..."

0 commit comments

Comments
 (0)