2016-12-26 11:23:54 -07:00
|
|
|
dist: trusty
|
2015-07-05 00:52:36 -07:00
|
|
|
sudo: false
|
2014-02-22 10:29:21 -07:00
|
|
|
language: c
|
2015-07-05 00:52:36 -07:00
|
|
|
|
2014-04-22 10:40:19 -07:00
|
|
|
env:
|
2014-05-31 07:19:14 -07:00
|
|
|
global:
|
2015-09-08 03:48:04 -07:00
|
|
|
# To force rebuilding of third-party dependencies, set this to 'true'.
|
2014-11-28 15:23:12 -07:00
|
|
|
- BUILD_NVIM_DEPS=false
|
2015-07-05 00:52:36 -07:00
|
|
|
# Travis has 1.5 virtual cores according to
|
|
|
|
# http://docs.travis-ci.com/user/speeding-up-the-build/#Paralellizing-your-build-on-one-VM
|
2014-11-27 07:10:36 -07:00
|
|
|
- MAKE_CMD="make -j2"
|
2016-07-29 02:08:37 -07:00
|
|
|
# Update PATH for pip.
|
2017-06-14 21:14:57 -07:00
|
|
|
- PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:/usr/lib/llvm-symbolizer-4.0/bin:$PATH"
|
2015-07-05 00:52:36 -07:00
|
|
|
# Build directory for Neovim.
|
|
|
|
- BUILD_DIR="$TRAVIS_BUILD_DIR/build"
|
|
|
|
# Build directory for third-party dependencies.
|
2015-09-08 03:48:04 -07:00
|
|
|
- DEPS_BUILD_DIR="$HOME/nvim-deps"
|
|
|
|
# Directory where third-party dependency sources are downloaded to.
|
|
|
|
- DEPS_DOWNLOAD_DIR="$TRAVIS_BUILD_DIR/deps-downloads"
|
2015-07-05 00:52:36 -07:00
|
|
|
# Install directory for Neovim.
|
|
|
|
- INSTALL_PREFIX="$HOME/nvim-install"
|
|
|
|
# Log directory for Clang sanitizers and Valgrind.
|
|
|
|
- LOG_DIR="$BUILD_DIR/log"
|
2017-05-30 05:54:09 -07:00
|
|
|
# Nvim log file.
|
|
|
|
- NVIM_LOG_FILE="$BUILD_DIR/.nvimlog"
|
2015-07-05 00:52:36 -07:00
|
|
|
# Default CMake flags.
|
|
|
|
- CMAKE_FLAGS="-DTRAVIS_CI_BUILD=ON
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug
|
|
|
|
-DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX
|
2017-04-09 17:33:00 -07:00
|
|
|
-DBUSTED_OUTPUT_TYPE=nvim
|
2014-12-08 13:00:54 -07:00
|
|
|
-DDEPS_PREFIX=$DEPS_BUILD_DIR/usr
|
2017-05-29 17:03:08 -07:00
|
|
|
-DMIN_LOG_LEVEL=3"
|
2015-09-08 03:48:04 -07:00
|
|
|
- DEPS_CMAKE_FLAGS="-DDEPS_DOWNLOAD_DIR:PATH=$DEPS_DOWNLOAD_DIR"
|
2015-07-05 00:52:36 -07:00
|
|
|
# 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"
|
|
|
|
# Environment variables for Clang sanitizers.
|
|
|
|
- ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan"
|
2016-11-11 12:18:54 -07:00
|
|
|
- TSAN_OPTIONS="log_path=$LOG_DIR/tsan"
|
2016-11-12 20:28:59 -07:00
|
|
|
- UBSAN_OPTIONS="print_stacktrace=1 log_path=$LOG_DIR/ubsan"
|
2015-07-05 00:52:36 -07:00
|
|
|
# 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"
|
2016-03-06 22:18:44 -07:00
|
|
|
# default target name for functional tests
|
|
|
|
- FUNCTIONALTEST=functionaltest
|
2017-03-31 06:02:53 -07:00
|
|
|
- CI_TARGET=tests
|
2015-07-05 00:52:36 -07:00
|
|
|
|
2017-05-13 21:46:30 -07:00
|
|
|
jobs:
|
2014-11-27 07:10:36 -07:00
|
|
|
include:
|
2017-05-13 21:46:30 -07:00
|
|
|
- stage: sanitizers
|
|
|
|
os: linux
|
2017-06-14 21:14:57 -07:00
|
|
|
compiler: clang-4.0
|
2017-05-13 21:46:30 -07:00
|
|
|
env: >
|
|
|
|
CLANG_SANITIZER=ASAN_UBSAN
|
|
|
|
CMAKE_FLAGS="$CMAKE_FLAGS -DPREFER_LUA=ON"
|
2015-06-08 09:49:23 -07:00
|
|
|
- os: linux
|
2017-06-14 21:14:57 -07:00
|
|
|
compiler: clang-4.0
|
2017-05-13 21:46:30 -07:00
|
|
|
env: CLANG_SANITIZER=TSAN
|
|
|
|
- stage: normal builds
|
|
|
|
os: linux
|
2016-03-06 22:18:44 -07:00
|
|
|
compiler: gcc-5
|
|
|
|
env: FUNCTIONALTEST=functionaltest-lua
|
2015-07-05 00:52:36 -07:00
|
|
|
- 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
|
2016-01-01 19:00:20 -07:00
|
|
|
env: BUILD_32BIT=ON
|
2014-11-27 07:10:36 -07:00
|
|
|
- os: osx
|
2014-11-30 03:27:08 -07:00
|
|
|
compiler: clang
|
2016-10-01 18:37:17 -07:00
|
|
|
osx_image: xcode7.3 # macOS 10.11
|
2014-11-27 07:10:36 -07:00
|
|
|
- os: osx
|
|
|
|
compiler: gcc-4.9
|
2016-10-01 18:37:17 -07:00
|
|
|
osx_image: xcode7.3 # macOS 10.11
|
2017-05-13 21:46:30 -07:00
|
|
|
- stage: lint
|
|
|
|
os: linux
|
|
|
|
env: CI_TARGET=lint
|
|
|
|
- stage: coverage
|
|
|
|
os: linux
|
|
|
|
compiler: gcc-5
|
|
|
|
env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
|
2016-12-27 16:00:52 -07:00
|
|
|
allow_failures:
|
|
|
|
- env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
|
2015-02-02 09:19:12 -07:00
|
|
|
fast_finish: true
|
2015-07-05 00:52:36 -07:00
|
|
|
|
2017-03-31 05:32:58 -07:00
|
|
|
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
|
2015-07-05 00:52:36 -07:00
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2017-06-14 21:14:57 -07:00
|
|
|
- llvm-toolchain-trusty-4.0
|
2015-07-05 00:52:36 -07:00
|
|
|
packages:
|
|
|
|
- autoconf
|
|
|
|
- automake
|
2016-11-04 08:20:58 -07:00
|
|
|
- apport
|
2015-07-05 00:52:36 -07:00
|
|
|
- build-essential
|
2017-06-14 21:14:57 -07:00
|
|
|
- clang-4.0
|
2015-09-22 05:36:15 -07:00
|
|
|
- cmake
|
2016-12-24 15:24:57 -07:00
|
|
|
- cscope
|
2015-07-05 00:52:36 -07:00
|
|
|
- g++-5-multilib
|
|
|
|
- g++-multilib
|
|
|
|
- gcc-5-multilib
|
|
|
|
- gcc-multilib
|
2015-09-22 05:36:15 -07:00
|
|
|
- gdb
|
2017-04-10 10:48:45 -07:00
|
|
|
- language-pack-tr
|
2015-07-05 00:52:36 -07:00
|
|
|
- libc6-dev-i386
|
2015-09-22 05:36:15 -07:00
|
|
|
- libtool
|
2017-06-14 21:14:57 -07:00
|
|
|
- llvm-4.0-dev
|
2017-04-10 10:48:45 -07:00
|
|
|
- locales
|
2015-09-22 05:36:15 -07:00
|
|
|
- pkg-config
|
|
|
|
- unzip
|
2015-07-05 00:52:36 -07:00
|
|
|
- valgrind
|
2015-09-22 05:36:15 -07:00
|
|
|
- xclip
|
2015-07-05 00:52:36 -07:00
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
cache:
|
|
|
|
apt: true
|
|
|
|
directories:
|
|
|
|
- "$HOME/.cache/pip"
|
|
|
|
- "$HOME/.cache/nvim-deps"
|
|
|
|
|
2015-03-17 16:36:45 -07:00
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/b5c38c99f9677aa3d031
|