forked from paceholder/nodeeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (52 loc) · 1.77 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: cpp
matrix:
include:
- os: osx
osx_image: xcode11.3
compiler: clang
env: Qt5_DIR=/usr/local/opt/qt5/lib/cmake/Qt5
- os: linux
dist: xenial
sudo: false
compiler: clang
env: CXX=clang++-7 CC=clang-7 QT=512
addons:
apt:
sources:
- llvm-toolchain-xenial-7
packages:
- clang-7
- os: linux
dist: xenial
sudo: false
compiler: gcc
env:
- CXX=g++-7 CC=gcc-7 QT=512
- CXXFLAGS="-fsanitize=address -fno-omit-frame-pointer"
- LDFLAGS=-fsanitize=address
# Too many false positive leaks:
- ASAN_OPTIONS=detect_leaks=0
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
git:
depth: 10
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install qt; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential libgl1-mesa-dev ; fi
- if [[ "$QT" == "512" ]]; then sudo add-apt-repository ppa:beineri/opt-qt-5.12.1-xenial -y; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -yqq install qt${QT}base; source /opt/qt${QT}/bin/qt${QT}-env.sh; fi
script:
- mkdir build
- cd build
- cmake -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_BUILD .. && make -j
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then xvfb-run --server-args="-screen 0 1024x768x24" ctest --output-on-failure; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ctest --output-on-failure; fi
notifications:
email: false