Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

circle.yml: enable VMTests for evm2wasm #267

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,17 @@ defaults:
command: |
git clone https://github.com/ethereum/tests ~/tests

vm-tests: &vm-tests
run:
name: "Run Ethereum vm tests"
working_directory: ~/build
command: |
echo 'export PATH=~/evm2wasm/bin:$PATH' >> $BASH_ENV
source $BASH_ENV
echo "running testeth command..."
testeth -t VMTests -- --testpath ~/tests --vm ~/libhera.so --evmc evm2wasm.js=true --singlenet Byzantium
echo "ran the vm tests."

state-tests: &state-tests
run:
name: "Run Ethereum state tests"
Expand Down Expand Up @@ -97,6 +108,7 @@ defaults:
- *install-cpp-ethereum
- *build-hera
# - *store-hera
- *vm-tests
- *state-tests

version: 2
Expand Down