Merge pull request #7764 from ethereum/ext-test-compile-split

[circleci] Splits out compilation only job for external tests
This commit is contained in:
chriseth
2019-11-25 17:30:15 +01:00
committed by GitHub
2 changed files with 62 additions and 11 deletions
+7 -2
View File
@@ -216,8 +216,13 @@ function run_test
printLog "Running compile function..."
$compile_fn
verify_compiler_version "$SOLCVERSION"
printLog "Running test function..."
$test_fn
if [[ "$COMPILE_ONLY" == 1 ]]; then
printLog "Skipping test function..."
else
printLog "Running test function..."
$test_fn
fi
done
}