xenia-canary/.travis.yml

72 lines
2.4 KiB
YAML
Raw Normal View History

# Make Travis use docker (for faster builds, in theory).
2015-08-01 06:48:24 +00:00
language: cpp
os:
- linux
dist: bionic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
2020-02-22 16:56:09 +00:00
- llvm-toolchain-9
packages:
2020-02-22 16:56:09 +00:00
- clang-9
- clang-format-9
- llvm-9-dev
- g++-8
- python3
- libc++-dev
- libc++abi-dev
- libgtk-3-dev
- libpthread-stubs0-dev
- libsdl2-dev
#- libvulkan1
#- libvulkan-dev
- libx11-dev
- liblz4-dev
2020-03-02 16:16:01 +00:00
jobs:
2017-12-15 05:14:46 +00:00
include:
2020-02-22 16:56:09 +00:00
- env: C_COMPILER=clang-9 CXX_COMPILER=clang++-9 LINT=true
- env: C_COMPILER=clang-9 CXX_COMPILER=clang++-9 BUILD=true CONFIG=Debug
- env: C_COMPILER=clang-9 CXX_COMPILER=clang++-9 BUILD=true CONFIG=Release
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:
- export LIBVULKAN_VERSION=1.1.70
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
2020-02-22 16:56:09 +00:00
- clang-format-9 --version
- clang-format-9 -style=file -dump-config
# Add Vulkan dependencies.
- travis_retry wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan1_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb
- travis_retry wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan-dev_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb
- if [[ $BUILD == true ]]; then sudo dpkg -i libvulkan1_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb libvulkan-dev_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb; fi
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
# 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