-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump common and fix Chain Writer naming (#328)
- Loading branch information
Showing
14 changed files
with
487 additions
and
478 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
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
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 |
---|---|---|
|
@@ -40,7 +40,7 @@ test: | |
go test -race -fullpath -shuffle on -count $(TEST_COUNT) -coverprofile=$(COVERAGE_FILE) \ | ||
`go list ./... | grep -Ev 'chainlink-ccip/internal/mocks|chainlink-ccip/mocks|chainlink-ccip/commit/merkleroot/rmn/rmnpb'` | ||
|
||
lint: ensure_go_version ensure_golangcilint_1_59 | ||
lint: ensure_go_version ensure_golangcilint_1_62_2 | ||
golangci-lint run -c .golangci.yml | ||
|
||
checks: test lint | ||
|
@@ -57,13 +57,13 @@ install-protoc: | |
go install google.golang.org/protobuf/cmd/[email protected] | ||
|
||
install-golangcilint: | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.59 | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2 | ||
|
||
ensure_go_version: | ||
@go version | grep -q 'go1.22' || (echo "Please use go1.22" && exit 1) | ||
@go version | grep -q 'go1.23' || (echo "Please use go1.23" && exit 1) | ||
|
||
ensure_golangcilint_1_59: | ||
@golangci-lint --version | grep -q '1.59' || (echo "Please use golangci-lint 1.59" && exit 1) | ||
ensure_golangcilint_1_62_2: | ||
@golangci-lint --version | grep -q '1.62.2' || (echo "Please use golangci-lint 1.62.2" && exit 1) | ||
|
||
ensure_protoc_28_0: | ||
@$(PROTOC_BIN) --version | grep -q 'libprotoc 28.0' || (echo "Please use protoc 28.0, (make install-protoc)" && exit 1) |
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
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
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
Oops, something went wrong.