Skip to content

Commit

Permalink
ci: fixed ci by updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashk767 committed Oct 30, 2024
1 parent 9dcfa3c commit ae2af60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 42 deletions.
50 changes: 12 additions & 38 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae2af60

Please sign in to comment.