From f02b2acbb8fe08c4c30036d8fe7358e5845f55a3 Mon Sep 17 00:00:00 2001 From: Everett Hildenbrandt Date: Mon, 28 May 2018 12:04:35 -0600 Subject: [PATCH] circle.yml: enable VMTests for evm2wasm --- circle.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/circle.yml b/circle.yml index 968025b0..b5e66a24 100644 --- a/circle.yml +++ b/circle.yml @@ -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" @@ -97,6 +108,7 @@ defaults: - *install-cpp-ethereum - *build-hera # - *store-hera + - *vm-tests - *state-tests version: 2