Skip to content

Commit

Permalink
CI: run ethereum tests on ubuntu-latest
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kcsongor committed Sep 25, 2023
1 parent be96073 commit c78711e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c78711e

Please sign in to comment.