Skip to content

Commit

Permalink
moving the docker image download to hive
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-o committed Oct 31, 2024
1 parent a04c8a4 commit cea1fc0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/hive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cea1fc0

Please sign in to comment.