mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
430 B
23 lines
430 B
7 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [ $TRAVIS_OS_NAME == linux ]; then
|
||
|
QT_PKG=${QT_VERSION:0:2}
|
||
|
source /opt/qt${QT_PKG}/bin/qt${QT_PKG}-env.sh || true;
|
||
|
fi
|
||
|
|
||
|
make ci
|
||
|
|
||
|
if [ $TRAVIS_OS_NAME == osx ]; then
|
||
|
make lint;
|
||
|
|
||
|
if [ $DEPLOYMENT == 1 ] && [ ! -z $TRAVIS_TAG ]; then
|
||
|
make macos-deploy;
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
if [ $TRAVIS_OS_NAME == linux ] && [ $DEPLOYMENT == 1 ] && [ ! -z $TRAVIS_TAG ]; then
|
||
|
make linux-deploy;
|
||
|
fi
|