xenia/.travis.yml

79 lines
2.6 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
os:
- linux
# - osx
sudo: required
2017-12-21 00:50:19 +00:00
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
2018-05-13 20:10:28 +00:00
- debian-sid
packages:
- clang-4.0
2017-12-20 20:54:43 +00:00
- llvm-4.0-dev
- g++-5
- python3
- libc++-dev
- libc++abi-dev
- libglew-dev
- libgtk-3-dev
- libpthread-stubs0-dev
#- libvulkan1
#- libvulkan-dev
- libx11-dev
- liblz4-dev
2018-05-13 20:10:28 +00:00
- qt5-default
2017-02-18 05:42:09 +00:00
matrix:
2017-12-15 05:14:46 +00:00
include:
2017-12-20 03:01:44 +00:00
- env: C_COMPILER=clang-4.0 CXX_COMPILER=clang++-4.0 LINT=true
2017-12-21 17:14:49 +00:00
sudo: false
2017-12-20 03:01:44 +00:00
- env: C_COMPILER=clang-4.0 CXX_COMPILER=clang++-4.0 BUILD=true CONFIG=Debug
- env: C_COMPILER=clang-4.0 CXX_COMPILER=clang++-4.0 BUILD=true CONFIG=Release
2015-08-01 07:09:48 +00:00
git:
# We handle submodules ourselves in xenia-build setup.
submodules: false
2018-05-13 20:10:28 +00:00
before_install:
# Add Vulkan dependencies
- travis_retry wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan1_$LIBVULKAN_VERSION+dfsg1-1ubuntu1~16.04.1_amd64.deb
- travis_retry wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan-dev_$LIBVULKAN_VERSION+dfsg1-1ubuntu1~16.04.1_amd64.deb
- if [[ $BUILD == true ]]; then sudo dpkg -i libvulkan1_$LIBVULKAN_VERSION+dfsg1-1ubuntu1~16.04.1_amd64.deb libvulkan-dev_$LIBVULKAN_VERSION+dfsg1-1ubuntu1~16.04.1_amd64.deb; fi
2015-08-01 06:48:24 +00:00
before_script:
2018-02-14 13:44:21 +00:00
- export LIBVULKAN_VERSION=1.0.61.1
2017-12-15 05:14:46 +00:00
- export CXX=$CXX_COMPILER
- export CC=$C_COMPILER
2015-08-01 08:30:47 +00:00
# Dump useful info.
- $CXX --version
2017-12-15 05:14:46 +00:00
- 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 base tests
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.
- 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