فهرست منبع

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
Csongor Kiss 2 سال پیش
والد
کامیت
c78711e5b5
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      .github/workflows/build.yml

+ 2 - 2
.github/workflows/build.yml

@@ -63,7 +63,7 @@ jobs:
       - run: cd algorand && make test
       - run: cd algorand && make test
 
 
   ethereum:
   ethereum:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
     steps:
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
       - uses: actions/setup-node@v2
       - uses: actions/setup-node@v2
@@ -74,7 +74,7 @@ jobs:
       - run: cd ethereum && make test
       - run: cd ethereum && make test
 
 
   ethereum-upgrade:
   ethereum-upgrade:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
     steps:
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
       - uses: actions/setup-node@v2
       - uses: actions/setup-node@v2