Skip to content

Commit

Permalink
revert gomods (#13533)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Jun 12, 2024
1 parent c6f1b30 commit bc01abe
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ gomod: ## Ensure chainlink's go dependencies are installed.
go mod download

.PHONY: gomodtidy
gomodtidy: gomods ## Run go mod tidy on all modules.
gomods tidy
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

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

.PHONY: generate
generate: gomods abigen codecgen mockery protoc ## Execute all go:generate commands.
gomods -w go generate -x ./...
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 ./...

.PHONY: testscripts
testscripts: chainlink-test ## Install and run testscript against testdata/scripts/* files.
Expand Down

0 comments on commit bc01abe

Please sign in to comment.