Skip to content

Commit

Permalink
Merge branch 'develop' into rtinianov_unnamedAgain
Browse files Browse the repository at this point in the history
  • Loading branch information
nolag authored Jun 12, 2024
2 parents 1ca4a39 + da91d3a commit 7bb3c76
Showing 1 changed file with 5 additions and 15 deletions.
20 changes: 5 additions & 15 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,8 @@ gomod: ## Ensure chainlink's go dependencies are installed.
go mod download

.PHONY: gomodtidy
gomodtidy: ## Run go mod tidy on all modules.
go mod tidy
cd ./core/scripts && go mod tidy
cd ./integration-tests && go mod tidy
cd ./integration-tests/load && go mod tidy
cd ./dashboard-lib && go mod tidy
cd ./crib && go mod tidy
gomodtidy: gomods ## Run go mod tidy on all modules.
gomods tidy

.PHONY: docs
docs: ## Install and run pkgsite to view Go docs
Expand Down Expand Up @@ -90,13 +85,8 @@ abigen: ## Build & install abigen.
./tools/bin/build_abigen

.PHONY: generate
generate: abigen codecgen mockery protoc ## Execute all go:generate commands.
go generate -x ./...
cd ./core/scripts && go generate -x ./...
cd ./integration-tests && go generate -x ./...
cd ./integration-tests/load && go generate -x ./...
cd ./dashboard-lib && go generate -x ./...
cd ./crib && go generate -x ./...
generate: gomods abigen codecgen mockery protoc ## Execute all go:generate commands.
gomods -w go generate -x ./...

.PHONY: testscripts
testscripts: chainlink-test ## Install and run testscript against testdata/scripts/* files.
Expand Down Expand Up @@ -129,7 +119,7 @@ presubmit: ## Format go files and imports.

.PHONY: gomods
gomods: ## Install gomods
go install github.com/jmank88/[email protected].0
go install github.com/jmank88/[email protected].1

.PHONY: mockery
mockery: $(mockery) ## Install mockery.
Expand Down

0 comments on commit 7bb3c76

Please sign in to comment.