1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/.travis/travis.sh
Zetok Zalbavar 4872eb3cc3
chore(travis): make travis build exit as soon as test fails
Also add `pkg-config` to travis build script for Linux.
2016-07-03 14:59:44 +01:00

21 lines
583 B
Bash
Executable File

#!/bin/bash
#
# Script that runs all the necessary tests on travis.
#
# Exits as soon as there's a failure in test.
set -e
if [[ "$TRAVIS_OS_NAME" == "linux" ]]
then
# osx cannot into extended regexp for grep, thus verify only on Linux
bash ./verify-commit-messages.sh "$TRAVIS_COMMIT_RANGE"
bash ./.travis/build-ubuntu_14_04.sh
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]
then
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -i
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -b
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -d
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -dmg
fi