From ee650cf03ab131ce2b1962d7ed7376f3e40d635c Mon Sep 17 00:00:00 2001 From: xermicus Date: Mon, 17 Feb 2025 11:33:30 +0100 Subject: [PATCH] ci: use upstream evm for tests (#213) Signed-off-by: Cyrill Leutwiler --- .github/workflows/rust.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 40a0fdf..9d19b57 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -32,10 +32,9 @@ jobs: - name: Install geth run: | - git clone https://github.com/xermicus/go-ethereum --branch=cl/fix-runner-state-dump --depth=1 - cd go-ethereum - make all - echo "$(pwd)/build/bin/" >> $GITHUB_PATH + sudo add-apt-repository -y ppa:ethereum/ethereum + sudo apt update + sudo apt install -y ethereum - name: Machete uses: bnjbvr/cargo-machete@main