Files
atlantis/scripts/build.sh
2017-06-18 16:48:32 -07:00

16 lines
318 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
# TODO: add parallel builds for every make target that has anything to do with testing.