aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5329dcaff13e1aba49d3ef0126ea90ce01d42e2c (plain) (blame)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
sudo: false
language: c

env:
  global:
    # To force rebuilding of third-party dependencies, set this to 'true'.
    - BUILD_NVIM_DEPS=false
    # Travis has 1.5 virtual cores according to
    # http://docs.travis-ci.com/user/speeding-up-the-build/#Paralellizing-your-build-on-one-VM
    - MAKE_CMD="make -j2"
    # Update PATH for pip and MinGW.
    - PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:$HOME/.local/mingw32/bin:$PATH"
    # LLVM symbolizer path.
    - LLVM_SYMBOLIZER="$(which llvm-symbolizer-3.6)"
    # Force verification of DLOG macros.
    - CFLAGS="-DMIN_LOG_LEVEL=0"
    # Build directory for Neovim.
    - BUILD_DIR="$TRAVIS_BUILD_DIR/build"
    # Build directory for third-party dependencies.
    - DEPS_BUILD_DIR="$HOME/nvim-deps"
    # Directory where third-party dependency sources are downloaded to.
    - DEPS_DOWNLOAD_DIR="$TRAVIS_BUILD_DIR/deps-downloads"
    # Install directory for Neovim.
    - INSTALL_PREFIX="$HOME/nvim-install"
    # Log directory for Clang sanitizers and Valgrind.
    - LOG_DIR="$BUILD_DIR/log"
    # Default CMake flags.
    - CMAKE_FLAGS="-DTRAVIS_CI_BUILD=ON
                   -DCMAKE_BUILD_TYPE=Debug
                   -DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX
                   -DBUSTED_OUTPUT_TYPE=gtest
                   -DDEPS_PREFIX=$DEPS_BUILD_DIR/usr"
    - DEPS_CMAKE_FLAGS="-DDEPS_DOWNLOAD_DIR:PATH=$DEPS_DOWNLOAD_DIR"
    # Additional CMake flags for 32-bit builds.
    - CMAKE_FLAGS_32BIT="-DCMAKE_SYSTEM_LIBRARY_PATH=/lib32:/usr/lib32:/usr/local/lib32
                         -DCMAKE_IGNORE_PATH=/lib:/usr/lib:/usr/local/lib
                         -DCMAKE_TOOLCHAIN_FILE=$TRAVIS_BUILD_DIR/cmake/i386-linux-gnu.toolchain.cmake"
    # Additional CMake flags for MinGW builds.
    - CMAKE_FLAGS_MINGW="-DCMAKE_TOOLCHAIN_FILE=$TRAVIS_BUILD_DIR/cmake/mingw32-w64-cross-travis.toolchain.cmake"
    # Environment variables for Clang sanitizers.
    - ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan"
    - ASAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER"
    - MSAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER"
    - TSAN_OPTIONS="external_symbolizer_path=$LLVM_SYMBOLIZER log_path=$LOG_DIR/tsan"
    - UBSAN_OPTIONS="log_path=$LOG_DIR/ubsan"
    # Environment variables for Valgrind.
    - VALGRIND_LOG="$LOG_DIR/valgrind-%p.log"
    # Cache marker for third-party dependencies cache.
    # If this file exists, we know that the cache contains compiled
    # dependencies and we can use it.
    - CACHE_MARKER="$HOME/.cache/nvim-deps/.travis_cache_marker"
    # Test success marker. If this file exists, we know that all tests
    # were successful. Required because we only want to update the cache
    # if the tests were successful, but don't have this information
    # available in before_cache (which is run before after_success).
    - SUCCESS_MARKER="$BUILD_DIR/.tests_successful"

matrix:
  include:
    - os: linux
      env: CI_TARGET=lint
    - os: linux
      compiler: gcc-5
    - os: linux
      # Travis creates a cache per compiler.
      # Set a different value here to store 32-bit
      # dependencies in a separate cache.
      compiler: gcc-5 -m32
      env: BUILD_32BIT=ON
    - os: linux
      compiler: clang-3.6
      env: GCOV=llvm-cov-3.6 CLANG_SANITIZER=ASAN_UBSAN CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
    - os: linux
      compiler: clang-3.6
      env: CLANG_SANITIZER=MSAN
    - os: linux
      compiler: clang-3.6
      env: CLANG_SANITIZER=TSAN
    - os: osx
      compiler: clang
    - os: osx
      compiler: gcc-4.9
    - os: linux
      env: BUILD_MINGW=ON
  fast_finish: true
  allow_failures:
    # TODO: Remove when all MSan errors have been fixed.
    - env: CLANG_SANITIZER=MSAN

before_install: .ci/before_install.sh
install:        .ci/install.sh
before_script:  .ci/before_script.sh
script:         .ci/script.sh
before_cache:   .ci/before_cache.sh
after_success:  .ci/after_success.sh

addons:
  apt:
    sources:
      # TODO: Remove PPA when Travis gets Python >=3.3.
      - deadsnakes
      - llvm-toolchain-precise-3.6
      - ubuntu-toolchain-r-test
    packages:
      - autoconf
      - automake
      - build-essential
      - clang-3.6
      - cmake
      - g++-5-multilib
      - g++-multilib
      - gcc-5-multilib
      - gcc-multilib
      - gdb
      - libc6-dev-i386
      - libtool
      - llvm-3.6-dev
      - pkg-config
      - python3.3-dev
      - unzip
      - valgrind
      - xclip

branches:
  except:
    - nightly

cache:
  apt: true
  directories:
    - "$HOME/.cache/pip"
    - "$HOME/.cache/nvim-deps"

notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/b5c38c99f9677aa3d031