xenia-canary/.travis.yml

74 lines
2.3 KiB
YAML
Raw Normal View History

# 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
env:
2017-02-18 05:42:09 +00:00
- LINT=true
2017-02-18 05:50:55 +00:00
- BUILD=true CONFIG=Debug
- BUILD=true CONFIG=Release
2017-02-06 06:24:06 +00:00
2017-02-18 05:42:09 +00:00
matrix:
allow_failures:
# LLVMGold.so is not installed correctly
2017-02-18 05:50:55 +00:00
- env: BUILD=true CONFIG=Release
sudo: required
addons:
apt:
sources:
2017-02-06 04:01:13 +00:00
# - ubuntu-toolchain-r-test
2017-09-20 17:30:29 +00:00
- llvm-toolchain-trusty
packages:
2017-02-06 04:04:42 +00:00
- clang-3.8
- clang-format-3.8
2017-02-06 02:21:35 +00:00
- libc++-dev
- python3
2017-09-20 17:30:29 +00:00
- libc++abi-dev
- libgtk-3-dev
- liblz4-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
2015-08-01 06:48:24 +00:00
before_script:
2017-02-06 04:04:42 +00:00
- export CXX=clang++-3.8
- export CC=clang-3.8
2015-08-01 08:30:47 +00:00
# Dump useful info.
- $CXX --version
2017-09-20 17:30:29 +00:00
# Add Vulkan dependencies
- wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan1_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
- wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan-dev_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
- sudo dpkg -i libvulkan1_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb libvulkan-dev_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
- python3 --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.
2017-02-18 05:42:09 +00:00
- if [[ $LINT == true ]]; then ./xenia-build lint --all; fi
# Build and run our simple hello world test.
2017-02-18 05:50:55 +00:00
- if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG --target=xenia-base-tests; fi
- if [[ $BUILD == true ]]; then ./build/bin/Linux/$CONFIG/xenia-base-tests; fi
2017-02-06 06:24:06 +00:00
# Build and run ppc tests
2017-02-18 05:50:55 +00:00
- if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG --target=xenia-cpu-ppc-tests; fi
# - if [[ $BUILD == true ]]; then ./build/bin/Linux/$CONFIG/xenia-cpu-ppc-tests --log_file=stdout; fi
2017-02-06 02:21:35 +00:00
2015-08-01 07:09:48 +00:00
# Build all of xenia.
2017-12-15 01:41:57 +00:00
- if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG; fi
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