Skip to content

Commit 99a04f3

Browse files
hyperpolymathtanush5800claude
authored
fix(ci): hypatia-scan workdir (${{ env.HOME }} resolves empty) (#16)
`hypatia-scan.yml` Build step used `working-directory: \${{ env.HOME }}/hypatia`; `env.HOME` is not a workflow env var so it resolved to `/hypatia` and the job hard-failed. Pinned to `/home/runner/hypatia` (GitHub ubuntu runner HOME). Unblocks the Hypatia Neurosymbolic Analysis check estate-wide. 🤖 Generated with [Claude Code](https://claude.com/claude-code) 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 e25d039 commit 99a04f3

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
@@ -38,7 +38,7 @@ jobs:
3838
fi
3939
4040
- name: Build Hypatia scanner (if needed)
41-
working-directory: ${{ env.HOME }}/hypatia
41+
working-directory: /home/runner/hypatia
4242
run: |
4343
if [ ! -f hypatia ] && [ ! -f hypatia-v2 ]; then
4444
echo "Building hypatia-v2 scanner..."

0 commit comments

Comments
 (0)