14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# script/cibuild: Run CI related checks and tests
|
|
|
|
source "$(dirname "${0}")"/../script/include/global_header.inc.sh
|
|
|
|
echo
|
|
echo "DEBUG: Hosts file:"
|
|
cat /etc/hosts
|
|
echo
|
|
|
|
# Run lint/style checks and unit tests
|
|
source ./script/test
|