Commit e3e56b9
fix(ci): orphan .opam in faces/, Hypatia HOME env var
Two follow-up fixes after the first round of CI corrective work landed
two of five but left build/lint/Hypatia still failing.
1. build / lint — `opam install . --deps-only` walks the whole tree for
`*.opam` files, finds both `./affinescript.opam` and
`./faces/rattlescript/affinescript/affinescript.opam`, and errors with
"Public library affinescript is defined twice". The faces/.opam was
generated by the deleted faces/dune-project (`generate_opam_files
true`) and was orphaned when that file was removed in this branch.
The `(dirs :standard \ faces .build)` directive in the root `dune`
file excludes faces/ from dune's BUILD scan, but does not affect
opam's discovery of `*.opam` files. Removed the orphaned .opam.
2. Hypatia Neurosymbolic Analysis — `working-directory: ${{ env.HOME }}/hypatia`
evaluates to `/hypatia` (HOME is not in `env` unless explicitly set as
a workflow/job-level env var), and the build step errors with "No
such file or directory". Added a job-level `HYPATIA_DIR: /home/runner/hypatia`
env var that's visible both to shell (`$HYPATIA_DIR`) and to Actions
expressions (`${{ env.HYPATIA_DIR }}`); replaced both call sites.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent b82d014 commit e3e56b9
2 files changed
Lines changed: 11 additions & 56 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
20 | 27 | | |
21 | 28 | | |
22 | 29 | | |
| |||
32 | 39 | | |
33 | 40 | | |
34 | 41 | | |
35 | | - | |
36 | | - | |
| 42 | + | |
| 43 | + | |
37 | 44 | | |
38 | 45 | | |
39 | 46 | | |
40 | | - | |
| 47 | + | |
41 | 48 | | |
42 | 49 | | |
43 | 50 | | |
| |||
52 | 59 | | |
53 | 60 | | |
54 | 61 | | |
55 | | - | |
| 62 | + | |
56 | 63 | | |
57 | 64 | | |
58 | 65 | | |
| |||
This file was deleted.
0 commit comments