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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: "1.25"
cache: false # stdlib-only, no go.sum to key a module cache on

- name: Go build, vet, test
run: |
Expand Down Expand Up @@ -43,6 +44,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: "1.25"
cache: false # stdlib-only, no go.sum to key a module cache on

- name: JSON Schema stays in sync with the Go types
run: go test ./trajectory/ -run "TestSchema" -v
Expand All @@ -69,6 +71,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: "1.25"
cache: false # stdlib-only, no go.sum to key a module cache on

- name: Build the trazo binary
run: go build -o trazo ./cmd/trazo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: "1.25"
cache: false # stdlib-only, no go.sum for setup-go to key its cache on

- name: Tag matches the compiled-in version
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dist: ## Build release archives for every target platform
echo "building $$os/$$arch"; \
CGO_ENABLED=0 GOOS=$$os GOARCH=$$arch \
go build -trimpath -o $(DISTDIR)/$(BIN)$$ext $(CMD) || exit 1; \
base=$(BIN)_$(VERSION)_$$os_$$arch; \
base=$(BIN)_$(VERSION)_$${os}_$${arch}; \
if [ $$os = windows ]; then \
(cd $(DISTDIR) && zip -q $$base.zip $(BIN)$$ext && rm $(BIN)$$ext); \
else \
Expand Down
Loading