-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: R-16 toolchain pin + reconciliation #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
9229bc4
5a86b99
f32fd8f
9b9af64
b10b6ff
9f5dedc
ecc7c06
628154c
7780a73
78325d3
6524657
78a8b9d
3a21be1
77ef630
0b2ba10
bef9b91
08e5863
b483cb9
15b945b
11bbae1
592c05d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| [tools] | ||
| # = "Docudactyl HPC — Pinned tool versions (mise)" | ||
| # = "These versions are tested and known to work with the current codebase." | ||
| # = "Upgrading any of these requires testing:" | ||
| # = "- Zig: build.zig API changes (0.14→0.15 broke addSharedLibrary)" | ||
| # = "- Idris2: ABI proof syntax may change" | ||
| # = "- OCaml: dune build compatibility" | ||
| # = "- Julia: legacy component only" | ||
| # = "Chapel is NOT managed by mise —" | ||
| # = "Current tested version: 2.7.0" | ||
| # = "SPDX-License-Identifier: MPL-2.0" | ||
| zig = "0.15.2" | ||
| idris2 = "0.8.0" | ||
| ocaml = "5.4.1" | ||
| julia = "1.12.5" | ||
| just = "1.46.0" | ||
|
Comment on lines
+1
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | 🏗️ Heavy lift 🔎 Supported by static analysis🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
rg -n -C 5 'asdf|mise|zig|julia|ocaml|idris2' Justfile .mise.toml
! rg -n '\.asdf/shims|asdf[^[:space:]]*shims' Justfile
for tool in just zig julia ocaml idris2; do
path="$(mise which "$tool")"
case "$path" in
*"/.asdf/shims/"*) exit 1 ;;
esac
doneRepository: hyperpolymath/docudactyl Length of output: 18997 Route HPC recipes through mise. The HPC recipes prepend 🤖 Prompt for AI Agents |
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 MEDIUM RISK
The Zig version pin (0.15.2) appears to conflict with the warning on line 5 regarding 0.15 breaking changes. Please confirm if the codebase has been updated to support Zig 0.15.2 or if the pin should remain at 0.14.x to maintain compatibility with the existing
build.zigAPI.