ccls/.travis.yml

167 lines
4.1 KiB
YAML
Raw Normal View History

2017-11-19 02:52:59 +00:00
dist: trusty
sudo: false
language: c++
env:
global:
- COMPILER=g++
2018-01-03 05:00:41 +00:00
# Default --recursive (rapidjson/thirdparty/gtest) is unnecessary
git:
submodules: false
2018-01-18 18:24:59 +00:00
depth: 1
2018-01-03 05:00:41 +00:00
before_install:
- git submodule update --init
2017-11-19 02:52:59 +00:00
addons:
apt:
sources: &apt_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.5
- llvm-toolchain-trusty-5.0
compiler: clang
os: linux
2018-01-03 04:39:27 +00:00
cache:
directories:
- build/clang+llvm-5.0.1-x86_64-linux-gnu-ubuntu-14.04/
2018-01-03 06:25:06 +00:00
- build/clang+llvm-5.0.1-x86_64-apple-darwin/
2017-12-07 19:53:09 +00:00
2017-11-19 02:52:59 +00:00
matrix:
fast_finish: true
include:
- env: COMPILER=g++-5
compiler: gcc
addons: &gcc5
apt:
packages: ["g++-5"]
sources: *apt_sources
- env: COMPILER=g++-7
compiler: gcc
addons: &gcc7
apt:
packages: ["g++-7"]
sources: *apt_sources
- env: COMPILER=clang++-3.5
addons: &clang35
apt:
packages: ["clang-3.5", "g++-7"]
sources: *apt_sources
- env: COMPILER=clang++-5.0
addons: &clang50
apt:
packages: ["clang-5.0", "g++-7"]
sources: *apt_sources
2018-01-18 18:24:59 +00:00
- env: COMPILER=clang++
osx_image: xcode9.1
os: osx
2017-11-19 02:52:59 +00:00
2018-01-18 18:24:59 +00:00
- env: COMPILER=g++-7
compiler: gcc
osx_image: xcode9.1
os: osx
2017-11-19 02:52:59 +00:00
2018-01-18 18:24:59 +00:00
allow_failures:
2017-11-19 02:52:59 +00:00
2018-01-18 18:24:59 +00:00
# macOS takes too long.
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=clang++
# osx_image: xcode9.1
# os: osx
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-7
# compiler: gcc
# osx_image: xcode9.1
# os: osx
2017-11-19 02:52:59 +00:00
2018-01-18 18:24:59 +00:00
# gcc builds that should be fixed at some point
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-5
# compiler: gcc
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-6
# compiler: gcc
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-7
# compiler: gcc
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-5
# compiler: gcc
# osx_image: xcode9.1
# os: osx
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-6
# compiler: gcc
# osx_image: xcode9.1
# os: osx
2017-11-19 02:52:59 +00:00
2018-02-07 07:22:00 +00:00
#- env: COMPILER=g++-7
# compiler: gcc
# osx_image: xcode9.1
# os: osx
2017-11-19 02:52:59 +00:00
install:
- |
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
2018-02-06 02:05:16 +00:00
if [[ "${COMPILER}" == "g++-5" ]]; then
brew install gcc@5
brew link --overwrite gcc@5
2017-11-19 02:52:59 +00:00
fi
2018-02-06 02:05:16 +00:00
if [[ "${COMPILER}" == "g++-6" ]]; then
brew install gcc@6
brew link --overwrite gcc@6
2017-11-19 02:52:59 +00:00
fi
2018-02-06 02:05:16 +00:00
if [[ "${COMPILER}" == "g++-7" ]]; then
brew install gcc@7
brew link --overwrite gcc@7
2017-11-19 02:52:59 +00:00
fi
fi
2018-02-06 02:05:16 +00:00
- |
if [[ "${COMPILER}" == g++* ]]; then
export J="-j1"
fi
2017-11-19 02:52:59 +00:00
- export CXX="${COMPILER}"
before_script:
- ${CXX} --version
script:
2018-01-03 06:25:06 +00:00
- travis_retry ./waf configure
2018-02-06 02:05:16 +00:00
- ./waf build ${J}
- ./build/release/bin/cquery --ci --log-all-to-stderr --test-unit
- ./build/release/bin/cquery --ci --log-all-to-stderr --test-index
2017-12-07 22:34:11 +00:00
2017-12-07 16:12:15 +00:00
notifications:
email: false
irc:
channels:
- "ircs://chat.freenode.net:6697/#cquery"
template:
- "[ %{repository_slug}#%{commit}] %{result} on %{branch} by %{author} (%{build_url} )"
2018-01-24 02:08:00 +00:00
before_deploy:
#- zip -r build/cquery-$TRAVIS_TAG-$TRAVIS_OS_NAME.zip build/release/bin/ build/release/lib/clang+llvm-*/lib/libclang.* build/release/lib/clang+llvm-*/lib/clang/5.0.1/include/
- ci/before_deploy.sh
2018-01-24 02:08:00 +00:00
deploy:
provider: releases
api_key:
secure: Ahv4Wp1wveWILqp6HB8UmsXwwfZ103fuJV/u6W4oJFRpnbIXRCGFKaDR1Ql0hsHduKFd/76nNQGSVvNNuTXlWaK2n0bTu1EZ4VYmXk7Q7gn4ROP9XFrIZu0c9XKJ/bzehCLj3t6KT0R5MK5gQe+cBmx4S5uGsGG5/nM+GZpE1N4craRCh64UNXMvIx20sW4VQcgj1Ccrc/6Skb3HET7PKbY+IB/LXnaF3nM6V71LxKW2wlakBmzzaNatQ46QOcOCduY4edE8FqBs7yZ0eFktNZusmjiaZT12t0r1hVe0O8e0ER3u9/c3t+hbPUplMR2FAPBZXojgLVhSfFtBaj45T74oCIi0eUaDeS+Oxl6IzgyVho9RurOtaru3hLOVoaD9wR6lGhj6Nz/2Na3lOIorxHfAZ4OgUmluoFLCynO4ylMD03fMBGBshChnmYbrxLw0xLZP2005WUAj8JN64QOmFmLt3gV7TfVldSFHuwoZyESfkXPRM1Xn8RtgFi/89p4jtPtyBFLSaeDggCwfWEMfADCfJ/j8lXtAPdyEINoaKrxkH8qCPoMLNPXE7JhkP8L0Smdq4cFUEXg3wKWM2hXmWmh2Y25BAyh4qu9CrDPd5qqFcXMtyix4ZjmThLFs/oKYbbMUo4FQ5xT5dpt/VZOi4NpcAj0G/M3jWhu85tMdtTc=
#file: build/cquery-$TRAVIS_TAG-$TRAVIS_OS_NAME.zip
file: build/cquery-$TRAVIS_TAG-x86_64-apple-darwin.tar.xz
file: build/cquery-$TRAVIS_TAG-x86_64-unknown-linux-gnu.tar.xz
2018-01-24 02:08:00 +00:00
skip_cleanup: true
on:
repo: cquery-project/cquery
tags: true