Skip to content

Commit 8ab4bdb

Browse files
committed
fix: geth/abigen install
1 parent 0bc1696 commit 8ab4bdb

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@ jobs:
6464
# Dependencies to generate go bindings.
6565
- name: Install abigen
6666
run: |
67-
sudo add-apt-repository ppa:ethereum/ethereum
68-
sudo apt-get update
69-
sudo apt-get install ethereum
67+
sudo apt update
68+
sudo apt install --yes software-properties-common
69+
sudo add-apt-repository --yes ppa:ethereum/ethereum
70+
sudo apt update
71+
sudo apt install ethereum
7072
abigen --version
7173
- name: Install foundry
7274
uses: foundry-rs/foundry-toolchain@v1
@@ -123,9 +125,11 @@ jobs:
123125
- name: Install Geth
124126
run: |
125127
if [ "${{ matrix.tool }}" = "geth" ]; then
126-
sudo add-apt-repository ppa:ethereum/ethereum
127-
sudo apt-get update
128-
sudo apt-get install ethereum
128+
sudo apt update
129+
sudo apt install --yes software-properties-common
130+
sudo add-apt-repository --yes ppa:ethereum/ethereum
131+
sudo apt update
132+
sudo apt install ethereum
129133
geth --version
130134
fi
131135
- name: Run loadtest againt ${{ matrix.tool }}

0 commit comments

Comments
 (0)