diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..44106930b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: cpp +compiler: + - clang + # - gcc don't really care + +os: + - linux + - osx # beta only + +# Run setup to build ninja/gyp/etc and actually build xenia. +before_script: + - travis_retry ./xenia-build.py setup + - ./xenia-build.py build + +# Run test suite. +script: ./test/run-tests.sh diff --git a/test/run-tests.sh b/test/run-tests.sh new file mode 100644 index 000000000..7d31e8a0c --- /dev/null +++ b/test/run-tests.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +# TODO(benvanik): tests :) +exit 0