Skip to content
Snippets Groups Projects
script.sh 1.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • if [ "$TRAVIS_OS_NAME" = "linux" ]; then
    
        export CC=${C_COMPILER}
        export CXX=${CXX_COMPILER}
    
        # make build use all available cores
        export CMAKE_BUILD_PARALLEL_LEVEL=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l)
    
        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}"
    
    
        export PATH="/usr/local/bin/:${PATH}"
        cmake --version
    
    if [ "$TRAVIS_OS_NAME" = "linux" ]; then
        # shellcheck disable=SC1090
        . "/opt/qt${QT_PKG}/bin/qt${QT_PKG}-env.sh" || true;
    
    Joe Donofry's avatar
    Joe Donofry committed
    fi
    
    
    if [ "$TRAVIS_OS_NAME" = "osx" ]; then
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
        export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
    fi
    
    
    # Build & install dependencies
    
    cmake -GNinja -Hdeps -B.deps \
    
        -DUSE_BUNDLED_BOOST="${USE_BUNDLED_BOOST}" \
        -DUSE_BUNDLED_CMARK="${USE_BUNDLED_CMARK}" \
    
        -DUSE_BUNDLED_JSON="${USE_BUNDLED_JSON}" \
        -DMTX_STATIC="${MTX_STATIC:-OFF}"
    
    cmake --build .deps
    
    # Build nheko
    
    cmake -GNinja -H. -Bbuild \
        -DCMAKE_BUILD_TYPE=RelWithDebInfo \
        -DCMAKE_INSTALL_PREFIX=.deps/usr
    
    if [ "$TRAVIS_OS_NAME" = "osx" ]; then
    
        make lint;
    
    
    Joe Donofry's avatar
    Joe Donofry committed
        if [ "$DEPLOYMENT" = 1 ] && [ -n "$VERSION" ] ; then
    
            make macos-deploy;
        fi
    fi
    
    
    Joe Donofry's avatar
    Joe Donofry committed
    if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$DEPLOYMENT" = 1 ] && [ -n "$VERSION" ]; then
    
        make linux-deploy;
    fi