浏览代码

CI: don't build foundry from source

the upgrade script just uses docker now
Csongor Kiss 3 年之前
父节点
当前提交
1a758011e0
共有 1 个文件被更改,包括 3 次插入16 次删除
  1. 3 16
      .github/workflows/build.yml

+ 3 - 16
.github/workflows/build.yml

@@ -8,9 +8,9 @@ on:
 jobs:
 jobs:
   # Run the full Tilt build and wait for it to converge
   # Run the full Tilt build and wait for it to converge
   tilt:
   tilt:
-    # in the future, we may want to run cheap lints, tests, and builds before firing up the expensive tilt test. 
+    # in the future, we may want to run cheap lints, tests, and builds before firing up the expensive tilt test.
     # But for now, we'll kick-off everything at once
     # But for now, we'll kick-off everything at once
-    # needs: [go-lint-and-tests, node, algorand, ethereum, terra, rust-lint-and-tests] 
+    # needs: [go-lint-and-tests, node, algorand, ethereum, terra, rust-lint-and-tests]
     runs-on: tilt-kube-public
     runs-on: tilt-kube-public
 
 
     # Cancel previous builds on the same branch/ref. Full runs are expensive
     # Cancel previous builds on the same branch/ref. Full runs are expensive
@@ -75,20 +75,7 @@ jobs:
         with:
         with:
           node-version: "16"
           node-version: "16"
       - run: cd clients/js && make install
       - run: cd clients/js && make install
-      - id: cache-foundry
-        uses: actions/cache@v3
-        with:
-          path: $HOME/.foundry
-          key: ${{ runner.os }}-foundry
-
-      - if: steps.cache-foundry.outputs.cache-hit != 'true'
-        run: curl -L https://foundry.paradigm.xyz | bash
-
-      - name: Install foundry
-        if: steps.cache-foundry.outputs.cache-hit != 'true'
-        run: $HOME/.foundry/bin/foundryup -C 4367ce1c3d2c10b71350b40258766d53a94c717f
-
-      - run: cd ethereum && PATH=$PATH:$HOME/.foundry/bin/ make test-upgrade
+      - run: cd ethereum && make test-upgrade
 
 
   terra:
   terra:
     runs-on: ubuntu-20.04
     runs-on: ubuntu-20.04