Skip to content
Merged
Show file tree
Hide file tree
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/dogfood-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Validate A2ML manifests
if: steps.detect.outputs.count > 0
run: bash .githooks/validate-a2ml.sh
run: bash .github/hooks/validate-a2ml.sh
- name: Write summary
run: |
A2ML_COUNT="${{ steps.detect.outputs.count }}"
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Validate K9 contracts
if: steps.detect.outputs.k9_count > 0
run: bash .githooks/validate-k9.sh
run: bash .github/hooks/validate-k9.sh
- name: Write summary
run: |
K9_COUNT="${{ steps.detect.outputs.k9_count }}"
Expand Down
1 change: 1 addition & 0 deletions .machine_readable/root-allow.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.hypatia-ignore
CLAUDE.md
build/ # build orchestration: guix.scm relocated here (canon 1.2.1 guix-primary template_ref = "build/")
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Files: src/*
verification/*
scripts/*
hooks/*
.githooks/*
.github/hooks/*
tests/*
meta-checker/*
HOL-o-extension/*
Expand Down
4 changes: 2 additions & 2 deletions guix.scm → build/guix.scm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; SPDX-License-Identifier: AGPL-3.0-or-later
;; echidna - Guix Package Definition
;; Development: guix shell -D -f guix.scm
;; Build: guix build -f guix.scm
;; Development: guix shell -D -f build/guix.scm
;; Build: guix build -f build/guix.scm

(use-modules (guix packages)
(guix gexp)
Expand Down
2 changes: 1 addition & 1 deletion echidna-playground/RSR_OUTLINE.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ git init
sed -i 's/RSR-template-repo/my-project/g' Justfile guix.scm README.adoc

# Enter development environment
guix shell -D -f guix.scm
guix shell -D -f build/guix.scm

# Validate compliance
just validate-rsr
Expand Down
Loading