mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 16:58:24 +00:00
16 lines
318 B
Bash
Executable File
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.
|