Skip to content

Commit 6667144

Browse files
TSavoclaude
andcommitted
fix(bug-zoo): determinism species harness targets go 1.22 not 1.23
The BZ-DETERMINISM-001 go harnesses (lab/exhibit/fixed) declared `go 1.23`, but CI runs go 1.22.12 with GOTOOLCHAIN=local, so the species hostCheck (`go test ./...`) failed with 'go.mod requires go >= 1.23' and tanked all_specimens_pass on main. The harness is trivial int arithmetic with no >=1.23 features; 1.22 matches the baseline the repo's 8 other go.mod files already use. Verified: lab harness passes under GOTOOLCHAIN=local at go 1.22, and the full bug-zoo smoke (all 5 specimens) is green locally. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 9b7fed8 commit 6667144

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • menagerie/bug-zoo/species/BZ-DETERMINISM-001-canonical-byte-order/go
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
module bzdeterminism/exhibit
2-
go 1.23
2+
go 1.22
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
module bzdeterminism/fixed
2-
go 1.23
2+
go 1.22
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
module bzdeterminism/lab
2-
go 1.23
2+
go 1.22

0 commit comments

Comments
 (0)