mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-09 23:34:41 +01:00
43 lines
833 B
Bash
Executable file
43 lines
833 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "preparation script"
|
|
pwd
|
|
. ./gitlab-ci/shared.sh
|
|
|
|
trap cleanup EXIT
|
|
trap cleanup SIGINT
|
|
|
|
[ -f /etc/icwmpd/cwmp_notifications ] && echo "" >/etc/icwmpd/cwmp_notifications || touch /etc/icwmpd/cwmp_notifications
|
|
|
|
echo "Compiling icmwp"
|
|
build_icwmp
|
|
|
|
echo "Starting dependent services"
|
|
cp ./gitlab-ci/icwmp-dm.conf /etc/supervisor/conf.d/
|
|
supervisorctl reread
|
|
supervisorctl update
|
|
sleep 2
|
|
supervisorctl restart all
|
|
sleep 5
|
|
supervisorctl status
|
|
|
|
ubus wait_for bbfdm
|
|
|
|
echo "Clean cmocka"
|
|
make clean -C test/cmocka/
|
|
|
|
echo "Running unit test"
|
|
make -C test/cmocka all
|
|
check_ret $?
|
|
|
|
echo "Stop dependent services"
|
|
supervisorctl stop all
|
|
supervisorctl status
|
|
|
|
#report part
|
|
#GitLab-CI output
|
|
gcovr -r . 2> /dev/null #throw away stderr
|
|
# Artefact
|
|
gcovr -r . 2> /dev/null --xml -o ./unit-test-coverage.xml
|
|
|
|
echo "Unit test PASS"
|