1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-12-01 15:24:12 +01:00
yubico-pam/tests/aux/build-and-test.sh
2015-01-20 10:53:47 +01:00

15 lines
236 B
Bash
Executable File

#!/bin/sh
set -e
set -x
autoreconf -i
./configure $CONFIGURE_ARGS $COVERAGE
make check
if [ "x$COVERAGE" != "x" ]; then
gem install coveralls-lcov
set +x
coveralls-lcov --repo-token $COVERALLS_TOKEN coverage/app2.info
fi