# 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 language: cpp compiler: - clang # - gcc os: - linux # - osx env: global: - secure: "JfveH9y6aVuZjiPFa61seHptIqMNLOyrFLTPyMvdp1Fyid5qymVWpGBr4boBD/aOYqGjw4T7wvk0zHwWKm9ScMBbt0S5/+9TyBu9M68BrfTXzNM2oARYACbvzxWprvcM6KTKQSzcXWmzNCmmL+75sd3evPge3Ox7b3B7u7M8zXs=" - LINT=true - BUILD=true CONFIG=Debug - BUILD=true CONFIG=Release matrix: allow_failures: # LLVMGold.so is not installed correctly - env: BUILD=true CONFIG=Release dist: trusty sudo: required addons: apt: sources: # - ubuntu-toolchain-r-test - llvm-toolchain-precise packages: - clang-3.8 - clang-format-3.8 - libc++-dev coverity_scan: project: name: "benvanik/xenia" description: "Build submitted via Travis CI" build_command: "./xenia-build build --config=$CONFIG --target=xenia-cpu-ppc-tests" branch_pattern: master git: # We handle submodules ourselves in xenia-build setup. submodules: false before_install: - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- before_script: - export CXX=clang++-3.8 - export CC=clang-3.8 # Dump useful info. - $CXX --version # Prepare environment (pull dependencies, build tools). - travis_retry ./xenia-build setup script: # Run linter. - if [[ $LINT == true ]]; then ./xenia-build lint --all; fi # Build and run our simple hello world test. - 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 - 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 # TODO(DrChat): Enable builds in the future. # Build all of xenia. #- ./xenia-build build --config=debug # All tests (without haswell support). #- ./xenia-build test --config=debug --no-build -- --enable_haswell_instructions=false # All tests (with haswell support). #- ./xenia-build test --config=debug --no-build -- --enable_haswell_instructions=true