Split CircleCI jobs (#26)

This commit is contained in:
Alex Beregszaszi 2020-05-15 11:22:20 +01:00 committed by GitHub
parent 6c07707f1d
commit 5e78324030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 12 deletions

View File

@ -1,9 +1,9 @@
version: 2.0
version: 2.1
jobs:
build:
docker:
- image: cimg/python:3.8.1
- image: cimg/base:2020.01
steps:
- checkout
- run:
@ -15,21 +15,38 @@ jobs:
- run:
name: Compile the contract
command: make
- run:
name: Run eth2.0-specs tests
command: |
sudo apt-get install -y python3-venv
git clone https://github.com/ethereum/eth2.0-specs
cp -f deposit_contract.json eth2.0-specs/deposit_contract/contracts/validator_registration.json
cd eth2.0-specs
make install_deposit_contract_tester
make test_deposit_contract
- persist_to_workspace:
root: .
paths:
- deposit_contract.json
- combined.json
- lib
spectest:
docker:
- image: cimg/python:3.8.1
steps:
- checkout
- attach_workspace:
at: /tmp/
- run:
name: Update python3
command: |
sudo apt-get update
sudo apt-get install -y python3-venv
- run:
name: Install eth2.0-specs tests
command: |
git clone https://github.com/ethereum/eth2.0-specs
cp -f /tmp/deposit_contract.json eth2.0-specs/deposit_contract/contracts/validator_registration.json
cd eth2.0-specs
make install_deposit_contract_tester
- run:
name: Run eth2.0-specs tests
command: |
cd eth2.0-specs
make test_deposit_contract
test:
docker:
- image: nixorg/nix:circleci
@ -50,6 +67,9 @@ workflows:
build_and_test:
jobs:
- build
- test:
- spectest:
requires:
- build
- test:
requires:
- spectest