-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fixed ci by updating dependencies
- Loading branch information
Showing
3 changed files
with
14 additions
and
42 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 |
---|---|---|
|
@@ -32,22 +32,14 @@ jobs: | |
- name: Install Dependencies | ||
run: > | ||
sudo add-apt-repository -y ppa:ethereum/ethereum | ||
sudo apt-get update | ||
sudo apt-get install -y npm ethereum | ||
npm install | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
go install github.com/mattn/[email protected] | ||
go install github.com/ory/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
go get -d github.com/ethereum/[email protected] \ | ||
&& go install github.com/ethereum/go-ethereum/cmd/[email protected] \ | ||
&& go install github.com/mattn/[email protected] \ | ||
&& go install github.com/ory/[email protected] \ | ||
&& go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
- name: Run make setup for mainnet | ||
run: make setup | ||
- name: Run gofmt | ||
|
@@ -95,22 +87,13 @@ jobs: | |
- name: Install Dependencies | ||
run: > | ||
sudo add-apt-repository -y ppa:ethereum/ethereum | ||
sudo apt-get update | ||
sudo apt-get install -y npm ethereum | ||
npm install | ||
go get -d github.com/ethereum/[email protected] \ | ||
&& go install github.com/ethereum/go-ethereum/cmd/[email protected] \ | ||
&& go install github.com/mattn/[email protected] \ | ||
&& go install github.com/ory/[email protected] \ | ||
&& go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
go install github.com/mattn/[email protected] | ||
go install github.com/ory/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
- name: Create AMD Artifact | ||
run: | | ||
|
@@ -146,22 +129,13 @@ jobs: | |
- name: Install Dependencies | ||
run: > | ||
sudo add-apt-repository -y ppa:ethereum/ethereum | ||
sudo apt-get update | ||
sudo apt-get install -y npm ethereum | ||
npm install | ||
go get -d github.com/ethereum/[email protected] \ | ||
&& go install github.com/ethereum/go-ethereum/cmd/[email protected] \ | ||
&& go install github.com/mattn/[email protected] \ | ||
&& go install github.com/ory/[email protected] \ | ||
&& go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
go install github.com/mattn/[email protected] | ||
go install github.com/ory/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
- name: Create ARM Artifact | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -45,11 +45,10 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y npm ethereum | ||
npm install | ||
go get -d github.com/ethereum/[email protected] | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
go install github.com/mattn/[email protected] | ||
go install github.com/ory/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2 | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 | ||
- name: Run make setup for testnet | ||
run: make setup-testnet | ||
|
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 |
---|---|---|
|
@@ -42,11 +42,10 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y npm ethereum | ||
npm install | ||
go get -d github.com/ethereum/[email protected] | ||
go install github.com/ethereum/go-ethereum/cmd/[email protected] | ||
go install github.com/mattn/[email protected] | ||
go install github.com/ory/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2 | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 | ||
- name: Run make setup for mainnet | ||
run: make setup | ||
|