nheko/.ci/script.sh

48 lines
1.2 KiB
Bash
Raw Normal View History

2018-01-13 13:59:48 +01:00
#!/usr/bin/env bash
set -ex
2019-02-01 00:48:52 +01:00
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
2018-09-05 00:10:24 +02:00
export CC=${C_COMPILER}
export CXX=${CXX_COMPILER}
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/${C_COMPILER} 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/${CXX_COMPILER} 10
sudo update-alternatives --set gcc "/usr/bin/${C_COMPILER}"
sudo update-alternatives --set g++ "/usr/bin/${CXX_COMPILER}"
fi
2019-02-25 00:23:08 +01:00
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
source /opt/qt${QT_PKG}/bin/qt${QT_PKG}-env.sh || true;
fi
2019-02-01 00:48:52 +01:00
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
2018-01-13 21:53:08 +01:00
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
fi
# Build & install dependencies
2018-09-11 18:02:36 +02:00
cmake -GNinja -Hdeps -B.deps \
-DUSE_BUNDLED_BOOST=${USE_BUNDLED_BOOST} \
-DUSE_BUNDLED_CMARK=${USE_BUNDLED_CMARK} \
-DUSE_BUNDLED_JSON=${USE_BUNDLED_JSON}
cmake --build .deps
# Build nheko
cmake -GNinja -H. -Bbuild \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=.deps/usr
cmake --build build
2018-01-13 13:59:48 +01:00
2019-02-01 00:48:52 +01:00
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
2018-01-13 13:59:48 +01:00
make lint;
2019-01-31 22:56:19 +01:00
if [ $DEPLOYMENT == 1 ] && [ ! -z $VERSION ] ; then
2018-01-13 13:59:48 +01:00
make macos-deploy;
fi
fi
2019-02-01 00:48:52 +01:00
if [ "$TRAVIS_OS_NAME" == "linux" ] && [ $DEPLOYMENT == 1 ] && [ ! -z $VERSION ]; then
2018-01-13 13:59:48 +01:00
make linux-deploy;
fi