Skip to content

Commit

Permalink
Add test job for running eth2.0-specs tests (#25)
Browse files Browse the repository at this point in the history
Also use python:3.8.1 docker image.
  • Loading branch information
axic authored May 14, 2020
1 parent 2b6c176 commit bc9b7cc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
jobs:
build:
docker:
- image: cimg/base:2020.01
- image: cimg/python:3.8.1
steps:
- checkout
- run:
Expand All @@ -14,3 +14,12 @@ 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

0 comments on commit bc9b7cc

Please sign in to comment.