-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: pin oapi-gen until toolbox gets 1.21.13
- Loading branch information
Showing
6 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen --config client.cfg.yaml openapi.v2.yml | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@v2.3.0 | ||
|
||
// Generated OpenAPI clients for the Composer service. | ||
package composer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen --config client.cfg.yaml content-sources.v1.json | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@v2.3.0 | ||
|
||
// Generated OpenAPI clients for the Content Sources service. | ||
package content_sources |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen --config client.cfg.yml provisioning.v1.yml | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@v2.3.0 | ||
|
||
// Generated OpenAPI clients for the Provisioning service. | ||
package provisioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen --config client.cfg.yml recommendations.v3.json | ||
//go:generate go run -mod=mod github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@v2.3.0 | ||
package recommendations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ set -eux | |
|
||
GO_VERSION=1.21.9 | ||
GO_BINARY=$(go env GOPATH)/bin/go$GO_VERSION | ||
OAPI_VERSION=2.3.0 | ||
|
||
|
||
# this is the official way to get a different version of golang | ||
# see https://go.dev/doc/manage-install | ||
|
@@ -12,12 +14,12 @@ $GO_BINARY download | |
# Ensure dev tools are installed | ||
which goimports || $GO_BINARY install golang.org/x/tools/cmd/goimports@latest | ||
|
||
# Ensure that all code has been regenerated from its sources | ||
$GO_BINARY generate -mod=mod ./... | ||
# Ensure that all code has been regenerated from its sources with the pinned oapi version | ||
git grep -l "go:generate.*github.com/oapi-codegen/oapi-codegen/v2/cmd/[email protected]" | ||
|
||
# ... the code is formatted correctly, ... | ||
goimports -w internal cmd | ||
$GO_BINARY fmt -mod=mod ./internal/... ./cmd/... | ||
$GO_BINARY fmt -mod=vendor ./internal/... ./cmd/... | ||
|
||
# ... and that go.mod and go.sum are up to date. | ||
$GO_BINARY mod tidy | ||
|