forked from mirror/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.
25 lines
489 B
25 lines
489 B
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
if [ $TRAVIS_OS_NAME == linux ]; then
|
|
source /opt/qt${QT_PKG}/bin/qt${QT_PKG}-env.sh || true;
|
|
fi
|
|
|
|
if [ $TRAVIS_OS_NAME == osx ]; then
|
|
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
|
|
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
|
|
|