Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7817c76
Fix 2 bugs, remove dead code, add formal verification with ReqProof
buger Apr 19, 2026
b415ee7
Add formal verification section to README
buger Apr 19, 2026
7a51011
Fix reqproof.dev → reqproof.com
buger Apr 19, 2026
0a788ca
Remove internal dogfooding notes from docs/
buger Apr 19, 2026
7e56e26
Remove generated fixtures from repo, add tests/ to .gitignore
buger Apr 19, 2026
b12ab08
Complete traceability: annotate all tests, add documentation links
buger Apr 19, 2026
caf8776
Remove internal research docs from tracked files
buger Apr 19, 2026
e0ff4be
Fix CI: disable audit until public release, update upload-artifact to v4
buger Apr 19, 2026
5526c5c
Fix audit CI: use R2 CDN for proof download, re-enable workflow
buger Apr 19, 2026
2938f97
Fix audit CI: install proof via Homebrew (available on ubuntu-latest)
buger Apr 19, 2026
e2bb97c
Fix audit CI: use downloads.reqproof.com with pinned version
buger Apr 19, 2026
f60ebe9
Use probelabs/proof-action@v1 with version pin and scope=full
buger Apr 19, 2026
2045ad7
Set fail-level to error until next proof release
buger Apr 19, 2026
d3e2307
Use default latest version, fail-level error until next release
buger Apr 19, 2026
f6b4f4c
Pin proof version until latest channel is populated
buger Apr 19, 2026
ee892db
Switch to latest proof with fail-level warn
buger Apr 19, 2026
99f4991
Proper CI setup: Go 1.25 for MC/DC, latest proof, fail-level warn
buger Apr 19, 2026
8c7ce02
Use ubuntu-24.04 for glibc 2.39 compatibility with Z3 solver
buger Apr 19, 2026
47497fa
Trigger CI rebuild with cache-busted proof-action
buger Apr 19, 2026
aac1fbc
Pre-download Z3 solver before audit
buger Apr 19, 2026
1b70ead
Debug Z3 pre-download: remove output suppression
buger Apr 19, 2026
98133b4
Remove manual Z3 pre-download, now handled by proof-action
buger Apr 19, 2026
552e93b
Install Z3 via apt before audit
buger Apr 19, 2026
8bbb8a8
Close coverage gaps: SYS-REQ-007/008/010 fuzz harness coverage to 100%
buger Apr 20, 2026
9c46110
chore: fix spec lint warnings — remove stale parent field, set review…
buger Apr 23, 2026
c03b9ef
feat: add property-based obligation classes with 24 new SYS-REQs
buger Apr 24, 2026
9dce61c
Migrate review storage from reviews/ folder to per-requirement timest…
buger Apr 27, 2026
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
Prev Previous commit
Next Next commit
Debug Z3 pre-download: remove output suppression
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
  • Loading branch information
buger and claude committed Apr 19, 2026
commit 1b70eadbc328b0f4e7eb49d92415b44f4dd87470
2 changes: 1 addition & 1 deletion .github/workflows/reqproof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# Pre-download Z3 solver so audit checks can use it.
# proof auto-downloads during verify but audit checks need it upfront.
- name: Pre-download Z3 solver
run: proof verify-properties specs/system parser --timeout 5 2>/dev/null || true
run: proof verify-properties specs/system parser --timeout 30 || echo "Z3 pre-download completed (verification may have partial results)"

- uses: probelabs/proof-action@v1
with:
Expand Down
Loading