Commit 21084937 authored by Adam Reese's avatar Adam Reese Committed by GitHub

Merge pull request #1415 from adamreese/fix/ci-compile-go

fix(ci): ensure go packages are compiled before testing
parents 313a9dc4 e11fb39f
...@@ -37,6 +37,10 @@ run_style_check() { ...@@ -37,6 +37,10 @@ run_style_check() {
make test-style make test-style
} }
# Build to ensure packages are compiled
echo "Running 'make build'"
make build
case "${CIRCLE_NODE_INDEX-0}" in case "${CIRCLE_NODE_INDEX-0}" in
0) run_unit_test ;; 0) run_unit_test ;;
1) run_style_check ;; 1) run_style_check ;;
......
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