24 lines
702 B
Bash
Executable File
24 lines
702 B
Bash
Executable File
#!/bin/bash
|
|
PACKAGES=('gobot' 'gobot/api' 'gobot/sysfs' 'gobot/drivers/gpio' 'gobot/drivers/i2c' 'gobot/platforms/firmata/client' 'gobot/platforms/intel-iot/edison' 'gobot/platforms/intel-iot/joule' $(ls ./platforms | sed -e 's/^/gobot\/platforms\//'))
|
|
EXITCODE=0
|
|
|
|
echo "mode: set" > profile.cov
|
|
touch tmp.cov
|
|
for package in "${PACKAGES[@]}"
|
|
do
|
|
go test -a -coverprofile=tmp.cov github.com/hybridgroup/$package
|
|
if [ $? -ne 0 ]
|
|
then
|
|
EXITCODE=1
|
|
fi
|
|
cat tmp.cov | grep -v "mode: set" >> profile.cov
|
|
done
|
|
|
|
if [ $EXITCODE -ne 0 ]
|
|
then
|
|
exit $EXITCODE
|
|
fi
|
|
|
|
export PATH=$PATH:$HOME/gopath/bin/
|
|
goveralls -v -coverprofile=profile.cov -service=travis-ci -repotoken=sFrR9ZmLP5FLc34lOaqir67RPzYOvFPUB
|