Skip to content

Commit

Permalink
Merge pull request #39 from near/miraclx/docker-cache-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov authored Apr 13, 2023
2 parents ece5479 + 1d2682f commit 9e3fa63
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ jobs:
- uses: Swatinem/rust-cache@v1
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Build docker image
run: docker build . -t near/mpc-recovery
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker image
uses: docker/build-push-action@v4
with:
context: .
tags: near/mpc-recovery:latest
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test
run: cargo test -p mpc-recovery-integration-tests
run: cargo test -p mpc-recovery-integration-tests

0 comments on commit 9e3fa63

Please sign in to comment.