Skip to content

Commit ce49b24

Browse files
committed
feat(crystal-binding): add forwarder recipes to root Justfile
1 parent 9089350 commit ce49b24

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Justfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,23 @@ chapel-test: build-ffi
180180
chapel-clean:
181181
just -d bindings/chapel --justfile bindings/chapel/Justfile clean
182182

183+
# --- Crystal Binding (Tier 1 Detachable Harness) ---
184+
# These recipes are THIN FORWARDERS into bindings/crystal/.
185+
crystal-check: build-ffi
186+
PROVEN_LIB_PATH="$(pwd)/ffi/zig/zig-out/lib" \
187+
just -d bindings/crystal --justfile bindings/crystal/Justfile check
188+
189+
crystal-build: build-ffi
190+
PROVEN_LIB_PATH="$(pwd)/ffi/zig/zig-out/lib" \
191+
just -d bindings/crystal --justfile bindings/crystal/Justfile build
192+
193+
crystal-test: build-ffi
194+
PROVEN_LIB_PATH="$(pwd)/ffi/zig/zig-out/lib" \
195+
just -d bindings/crystal --justfile bindings/crystal/Justfile test
196+
197+
crystal-clean:
198+
just -d bindings/crystal --justfile bindings/crystal/Justfile clean
199+
183200
# ---------------------------------------------------------------------------
184201
# Cleaning
185202
# ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)