mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 22:28:25 +00:00
14 lines
229 B
Bash
Executable File
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
|