Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: build test validate validate-portable-ai dist release-dry-run clean
.PHONY: build test validate validate-portable-ai validate-model-carry-boundary dist release-dry-run clean

BIN := sourceos-ai
DIST_DIR := dist
Expand All @@ -20,9 +20,13 @@ test:
validate-portable-ai:
python3 tools/validate_portable_ai_packs.py

validate: build validate-portable-ai
validate-model-carry-boundary:
python3 tools/validate_model_carry_authorization_boundaries.py

validate: build validate-portable-ai validate-model-carry-boundary
python3 tools/validate_carry_refs.py
bin/$(BIN) carry validate --refs examples
bin/$(BIN) carry list --refs examples
bin/$(BIN) doctor --refs examples
bin/$(BIN) self-test --refs examples
bin/$(BIN) emit-evidence --refs examples >/tmp/sourceos-ai-evidence.json
Expand Down
Loading