From 90ca7966f77760935bc619e8fff7a3f549b2a071 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sat, 1 Aug 2015 00:09:48 -0700 Subject: [PATCH] Manual travis submodules. --- .travis.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ebcdc1a1..1c36d54f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,13 +10,21 @@ os: - linux # - osx -# Run setup to build ninja/gyp/etc and actually build xenia. +git: + # We handle submodules ourselves in xenia-build setup. + submodules: false + before_script: + # Prepare environment (pull dependencies, build tools). - travis_retry ./xenia-build setup - - ./xenia-build build --config=debug # Run test suites. script: + # Run linter. - ./xenia-build lint --all + # 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