From cea1fc0285a35c0f694ce3635f63299a4cc9dcd9 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 31 Oct 2024 11:44:10 -0300 Subject: [PATCH] moving the docker image download to hive --- .github/workflows/ci.yaml | 8 -------- .github/workflows/hive.yaml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1d5ec8258..a55c3ebff 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -73,14 +73,6 @@ jobs: run: | make test - docker-image: - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - run-id: ${{ github.event.workflow_run.id }} - name: ethereum_rust_image - github-token: ${{ secrets.GITHUB_TOKEN }} - prover: name: Build RISC-V zkVM program runs-on: ubuntu-latest diff --git a/.github/workflows/hive.yaml b/.github/workflows/hive.yaml index 7d3f90850..46ce9c704 100644 --- a/.github/workflows/hive.yaml +++ b/.github/workflows/hive.yaml @@ -21,6 +21,18 @@ env: RUST_VERSION: 1.80.1 jobs: + docker-image: + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + run-id: ${{ github.event.workflow_run.id }} + name: ethereum_rust_image + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Load image + run: | + docker load --input /tmp/ethereum_rust_image.tar + docker image ls -a + run-hive: name: ${{ matrix.name }} runs-on: ubuntu-latest