mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
28 lines
751 B
YAML
28 lines
751 B
YAML
language: cpp
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
osx_image: xcode7
|
|
compiler: clang
|
|
- os: osx
|
|
osx_image: xcode8
|
|
compiler: clang
|
|
- os: linux
|
|
compiler: gcc
|
|
- os: linux
|
|
compiler: clang
|
|
install:
|
|
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install qt5; fi
|
|
- if [ $TRAVIS_OS_NAME == osx ]; then export CMAKE_PREFIX_PATH=/usr/local/opt/qt5; fi
|
|
- if [ $TRAVIS_OS_NAME == linux ]; then ./.ci/linux.sh ; fi
|
|
before_script:
|
|
- if [ $TRAVIS_OS_NAME == linux ]; then source /opt/qt58/bin/qt58-env.sh; fi
|
|
- cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
|
script:
|
|
- make -C build -j2
|