mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
859c8ede8a
* Remove Clang 3.5 since compilation with 3.4 and 3.6 is enough. * Building for Coverity Scan with 3 threads and without launcher since it's timeout otherwise. * Add Slack notifications to #notifications channel. * Direct email notifications to noreply at vcmi.eu. We can later add redirection to those who want them.
69 lines
2.6 KiB
YAML
69 lines
2.6 KiB
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
before_install:
|
|
- test $TRAVIS_BRANCH != coverity_scan -o ${TRAVIS_JOB_NUMBER##*.} = 1 || exit 0
|
|
- if [[ $VCMI_PLATFORM == 'linux' ]]; then . .travis.linux; fi
|
|
- if [[ $VCMI_PLATFORM == 'mac' ]]; then . .travis.osx; fi
|
|
- if [[ $VCMI_PLATFORM == 'mxe' ]]; then . .travis.mxe; fi
|
|
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
- if [[ $TRAVIS_BRANCH != 'coverity_scan' ]]; then cmake -G "Unix Makefiles" .. $VCMI_CMAKE_FLAGS; fi
|
|
|
|
script:
|
|
- test $TRAVIS_BRANCH != coverity_scan || exit 0
|
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then cd ..; xcodebuild -project osx/osx-vcmibuilder/vcmibuilder.xcodeproj/ -configuration Release CONFIGURATION_BUILD_DIR=..; cd build; fi
|
|
- make -j2
|
|
|
|
env:
|
|
matrix:
|
|
- ignore=this
|
|
global:
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
- secure: "NMg+qtQB4DIZ/KqlDeIn3K7A7Ydksdpnbv6Ha9n4bSSA0AT8wlPwbHXvQmiR8qYs6cnz4fyY6NVcBe7X3bdR8jWyPNAS0l0QByqG12q3dBpEtNNn0X5u/GS3wHse5+ObNAF9a83+xACTQj2UdxqHgJ3LFGzdBpQt3kLsc8NDnn8="
|
|
|
|
matrix:
|
|
exclude:
|
|
- env: ignore=this
|
|
include:
|
|
- os: linux
|
|
compiler: clang
|
|
env: VCMI_PLATFORM='linux' REAL_CC=clang-3.6 REAL_CXX=clang++-3.6 PACKAGE=clang-3.6 SUPPORT=libstdc++-4.8-dev VCMI_CMAKE_FLAGS='-DENABLE_TEST=0'
|
|
- os: linux
|
|
compiler: clang
|
|
env: VCMI_PLATFORM='linux' REAL_CC=clang-3.4 REAL_CXX=clang++-3.4 PACKAGE=clang-3.4 SUPPORT=libstdc++-4.8-dev VCMI_CMAKE_FLAGS='-DENABLE_TEST=0'
|
|
- os: linux
|
|
compiler: gcc
|
|
env: VCMI_PLATFORM='linux' REAL_CC=gcc-4.8 REAL_CXX=g++-4.8 PACKAGE=g++-4.8 SUPPORT= VCMI_CMAKE_FLAGS='-DENABLE_TEST=0'
|
|
- os: linux
|
|
env: VCMI_PLATFORM='mxe' MXE_TARGET=i686-w64-mingw32.shared VCMI_CMAKE_FLAGS='-DENABLE_TEST=0'
|
|
sudo: required
|
|
- os: osx
|
|
env: VCMI_PLATFORM='mac'
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: vcmi/vcmi
|
|
description: Build submitted via Travis CI
|
|
notification_email: coverity@arseniyshestakov.com
|
|
build_command_prepend: "cov-configure --compiler clang-3.6 --comptype clangcc && cov-configure --comptype clangcxx --compiler clang++-3.6 && cmake -G Ninja .. -DCMAKE_BUILD_TYPE=DEBUG -DENABLE_LAUNCHER=0 -DENABLE_TEST=0"
|
|
build_command: ninja -j 3
|
|
branch_pattern: coverity_scan
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- noreply@vcmi.eu
|
|
on_success: change
|
|
on_failure: always
|
|
slack:
|
|
secure: "KHXFe14FFKtw5mErWbj730+utqy7i/3AUobWfAMAGvWI5sJYlhbBU+KvvCoD2SlRQg3mQqgwVw8NBJF1Mffs7WcRmrFFFmuMqZxFLAfKBd3T0CxWpAGfnfNgDmlfV4OfEgQWk1pakEPOymhxbbmLUuCjykZDuTcioxAk0UAHDwY="
|