1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-12-12 12:08:49 +01:00
yubico-pam/tests/aux/build-and-test.sh

15 lines
236 B
Bash
Raw Normal View History

2015-01-20 10:48:31 +01:00
#!/bin/sh
set -e
2015-01-20 10:53:47 +01:00
set -x
2015-01-20 10:48:31 +01:00
autoreconf -i
2015-01-20 10:53:47 +01:00
./configure $CONFIGURE_ARGS $COVERAGE
2015-01-20 10:48:31 +01:00
make check
if [ "x$COVERAGE" != "x" ]; then
gem install coveralls-lcov
2015-01-20 10:53:47 +01:00
set +x
2015-01-20 10:48:31 +01:00
coveralls-lcov --repo-token $COVERALLS_TOKEN coverage/app2.info
fi