Skip to content

Commit

Permalink
FIX: ea3709b ci: caching in onpush-build-ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dtebbs committed Jan 29, 2021
1 parent a93c85d commit 64c91a7
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/onpush-build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ jobs:
with:
path: ~/.cache/pip
key: build-linux-pip-${{ hashFiles('**/setup.py') }}-${{ runner.os }}
- name: Install grpc
run: scripts/install_grpc /usr v1.31.x depends/grpc
- name: Install dependencies
run: |
scripts/install_grpc /usr v1.31.x depends/grpc
sudo apt install -y ccache
- name: Execute
run: CI_CHECK_FORMAT=1 CI_MPC_TESTS=1 CI_CONFIG=${{ matrix.config }} scripts/ci build

build-linux-pghr13:
runs-on: ubuntu-20.04
needs: build-grpc
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -60,11 +63,16 @@ jobs:
with:
key: grpc-1.31.x-${{ runner.os }}-test
path: depends/grpc
- name: Install dependencies
run: |
scripts/install_grpc /usr v1.31.x depends/grpc
sudo apt install -y ccache
- name: Execute
run: CI_CONFIG=Release CI_ZKSNARK=PGHR13 scripts/ci build

build-linux-bls12-377:
runs-on: ubuntu-20.04
needs: build-grpc
steps:
- uses: actions/checkout@v1
with:
Expand All @@ -74,5 +82,9 @@ jobs:
with:
key: grpc-1.31.x-${{ runner.os }}-test
path: depends/grpc
- name: Install dependencies
run: |
scripts/install_grpc /usr v1.31.x depends/grpc
sudo apt install -y ccache
- name: Execute
run: CI_CONFIG=Release CI_CURVE=BLS12_377 scripts/ci build

0 comments on commit 64c91a7

Please sign in to comment.