Commit 2d63f2f9 authored by Georgios Konstantopoulos's avatar Georgios Konstantopoulos Committed by GitHub

fix(contracts): do not build ovm and contracts concurrently (#650)

there's a race condition somewhere in hardhat which does not generate the artifacts
in the correct directory sometimes, causing our tests to fail with 'artifact not found'
parent 79f66e96
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
set -e set -e
yarn run build:typescript& yarn build:typescript &
yarn run build:contracts& yarn build:contracts &
yarn run build:contracts:ovm& yarn build:contracts:ovm
wait wait
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment