From c78711e5b50ab9bbe568fb72bed30f2b38bfef7c Mon Sep 17 00:00:00 2001 From: Csongor Kiss Date: Mon, 25 Sep 2023 15:43:05 -0400 Subject: [PATCH] CI: run ethereum tests on ubuntu-latest ubuntu-20.04 ships with GLIBC-2.31, but the latest foundry nightly (which these CI actions use) link against 2.33+ (perhaps foundry should statically link against something like musl...?) So instead we run these two tests on ubuntu-latest --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5dc941bf7..120b58a15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,7 +63,7 @@ jobs: - run: cd algorand && make test ethereum: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 @@ -74,7 +74,7 @@ jobs: - run: cd ethereum && make test ethereum-upgrade: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2