From e11fb39f6d6b586816e35c9c7c57835d179c87dd Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Wed, 19 Oct 2016 08:30:29 -0700 Subject: [PATCH] fix(ci): ensure go packages are compiled before testing Attempt for build speed record --- scripts/ci.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 ;;