diff --git a/scripts/ci.sh b/scripts/ci.sh index 04aee0b51..4ac87c958 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -37,6 +37,10 @@ run_style_check() { make test-style } +# Build to ensure packages are compiled +echo "Running 'make build'" +make build + case "${CIRCLE_NODE_INDEX-0}" in 0) run_unit_test ;; 1) run_style_check ;;