Files
atlantis/scripts/build.sh
Anubhav Mishra 9de7c6474e adding vendoring to atlantis (#40)
* adding vendoring to atlantis
* removing deps test target
2017-06-20 18:59:18 -07:00

20 lines
367 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
# Get deps
echo "Running 'make deps'"
make deps
# 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.