Files
atlantis/scripts/build.sh
2017-06-17 14:20:51 -07:00

14 lines
229 B
Bash
Executable File

#!/usr/bin/env bash
run_unit_test() {
echo "Running unit tests: 'make test'"
make test
}
# Run unit tests
run_unit_test
# Build packages to make sure they can be compiled
echo "Running 'make build'"
make build-service