2015-08-01 08:07:17 +00:00
|
|
|
# Make Travis use docker (for faster builds, in theory).
|
|
|
|
# TODO(benvanik): re-enable when clang-3.8 is whitelisted.
|
|
|
|
# https://github.com/travis-ci/apt-package-whitelist/issues/474
|
|
|
|
#sudo: false
|
2015-08-01 06:48:24 +00:00
|
|
|
|
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
# - gcc
|
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
# - osx
|
|
|
|
|
2016-06-13 23:27:14 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- LLVM_VERSION=3.8.0
|
|
|
|
- LLVM_ARCHIVE_PATH=$HOME/clang+llvm.tar.xz
|
|
|
|
|
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
2015-09-22 15:19:57 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
2017-02-06 04:01:13 +00:00
|
|
|
# - ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.9
|
2015-09-22 15:19:57 +00:00
|
|
|
packages:
|
2017-02-06 04:01:13 +00:00
|
|
|
- clang-3.9
|
|
|
|
- clang-format-3.9
|
2017-02-06 02:21:35 +00:00
|
|
|
- libc++-dev
|
2015-08-01 07:41:46 +00:00
|
|
|
|
2015-08-01 07:09:48 +00:00
|
|
|
git:
|
|
|
|
# We handle submodules ourselves in xenia-build setup.
|
|
|
|
submodules: false
|
|
|
|
|
2016-06-13 23:27:14 +00:00
|
|
|
before_install:
|
2017-02-06 02:21:35 +00:00
|
|
|
# Nothing!
|
2016-06-13 23:27:14 +00:00
|
|
|
|
2015-08-01 06:48:24 +00:00
|
|
|
before_script:
|
2017-02-06 04:01:13 +00:00
|
|
|
- export CXX=clang++-3.9
|
|
|
|
- export CC=clang-3.9
|
2015-08-01 08:30:47 +00:00
|
|
|
# Dump useful info.
|
|
|
|
- $CXX --version
|
2015-08-01 07:09:48 +00:00
|
|
|
# Prepare environment (pull dependencies, build tools).
|
2015-08-01 06:48:24 +00:00
|
|
|
- travis_retry ./xenia-build setup
|
|
|
|
|
|
|
|
script:
|
2015-08-01 07:09:48 +00:00
|
|
|
# Run linter.
|
2015-08-01 06:48:24 +00:00
|
|
|
- ./xenia-build lint --all
|
2015-09-07 01:07:52 +00:00
|
|
|
# Run style checker.
|
|
|
|
#- ./xenia-build style
|
2016-01-01 20:54:36 +00:00
|
|
|
# Build and run our simple hello world test.
|
2017-02-06 02:21:35 +00:00
|
|
|
- ./xenia-build build --config=debug --target=xenia-base-tests
|
|
|
|
- ./build/bin/Linux/Debug/xenia-base-tests
|
|
|
|
|
|
|
|
# TODO(DrChat): Enable builds in the future.
|
2015-08-01 07:09:48 +00:00
|
|
|
# Build all of xenia.
|
2015-09-07 01:07:52 +00:00
|
|
|
#- ./xenia-build build --config=debug
|
2015-08-01 07:09:48 +00:00
|
|
|
# All tests (without haswell support).
|
2015-09-07 01:07:52 +00:00
|
|
|
#- ./xenia-build test --config=debug --no-build -- --enable_haswell_instructions=false
|
2015-08-01 07:09:48 +00:00
|
|
|
# All tests (with haswell support).
|
2015-09-07 01:07:52 +00:00
|
|
|
#- ./xenia-build test --config=debug --no-build -- --enable_haswell_instructions=true
|