Skip to content

Commit

Permalink
always save cache
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed May 12, 2023
1 parent bc852c4 commit 8113197
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/integrators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
key: ${{ runner.os }}-${{ env.ERA_HASH }}

- name: Initialize repository and install dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: steps.cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 https://github.com/matter-labs/era-compiler-tester.git
cd era-compiler-tester
Expand All @@ -60,6 +60,22 @@ jobs:
zkevm-llvm clone && zkevm-llvm build
cargo build --release
- name: Save cache
uses: actions/cache/save@v3
if: always()
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
**/target
**/target-llvm
**/compiler_tester
**/llvm
**/era-compiler-tester
key: ${{ runner.os }}-${{ env.ERA_HASH }}

- name: Install Vyper
run: |
pip install .
Expand Down

0 comments on commit 8113197

Please sign in to comment.