build(deps): bump cryptography from 3.3.2 to 41.0.3 in /client #458
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Actions for pull requests only | |
name: zeth-ci-onpullrequest-build-ubuntu | |
on: | |
pull_request: | |
jobs: | |
# Job to build the grpc libraries. The grpc build directory is populated and | |
# cached so that all other jobs can mark this job as a prerequisite and just | |
# run `make install`. | |
# | |
# NOTE: the version number here (in `key` and in script arguments) must be | |
# kept in sync with the key used by the jobs. | |
onpr-build-grpc: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache grpc | |
uses: actions/cache@v2 | |
with: | |
key: grpc-1.44.x-${{ runner.os }} | |
path: depends/grpc | |
- name: Build grpc | |
run: if ! [ -d depends/grpc ] ; then scripts/install-grpc /usr v1.44.x ; fi | |
# Extract the commits of submodules for use by cache steps | |
onpr-submodules: | |
runs-on: ubuntu-20.04 | |
outputs: | |
commits: ${{ steps.get-commits.outputs.commits }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Submodule Commits | |
id: get-commits | |
run: | | |
git submodule sync | |
echo "::set-output name=commits::"`git submodule status depends/libsodium | grep -oe '[0-9a-fA-F]\+' | head -c 8`-`git submodule status depends/libsnark | grep -oe '[0-9a-fA-F]\+' | head -c 8` | |
# Run the prover testing python scripts | |
prover-tests-linux: | |
runs-on: ubuntu-20.04 | |
needs: [onpr-build-grpc, onpr-submodules] | |
strategy: | |
matrix: | |
curve: [ BLS12_377, ALT_BN128 ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Cache grpc | |
uses: actions/cache@v2 | |
with: | |
key: grpc-1.44.x-${{ runner.os }} | |
path: depends/grpc | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/pip | |
~/Library/Caches/pip | |
key: prover-tests-pip-${{ hashFiles('**/setup.py') }}-${{ runner.os }} | |
- name: Install dependencies | |
run: | | |
INSTALL_ONLY=1 scripts/install-grpc /usr v1.44.x | |
sudo apt install -y ccache | |
- name: Execute | |
run: CI_CONFIG=Release CI_CURVE=${{ matrix.curve }} CI_PROVER_TESTS=1 scripts/ci build | |
# Run all unit tests and integration tests | |
integration-tests-linux: | |
runs-on: ubuntu-20.04 | |
needs: [onpr-build-grpc, onpr-submodules] | |
strategy: | |
matrix: | |
curve: [ BLS12_377, ALT_BN128 ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Cache grpc | |
uses: actions/cache@v2 | |
with: | |
key: grpc-1.44.x-${{ runner.os }} | |
path: depends/grpc | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/pip | |
~/Library/Caches/pip | |
key: integration-tests-pip-${{ hashFiles('**/setup.py') }}-${{ runner.os }} | |
- name: Install dependencies | |
run: | | |
INSTALL_ONLY=1 scripts/install-grpc /usr v1.44.x | |
sudo apt install -y ccache | |
- name: Execute | |
run: CI_CONFIG=Release CI_CURVE=${{ matrix.curve }} CI_FULL_TESTS=1 CI_INTEGRATION_TESTS=1 scripts/ci build |