summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBrad Parker2017-10-23 18:33:41 -0400
committerBrad Parker2017-10-23 18:33:41 -0400
commit22513386fce71022d59a203a01c71ac67be41d84 (patch)
treefec439367330d8733baaf6ac25abb67bd4a389ef /.travis.yml
parentfe24f89f471b6c8d74948f56a387906c29eceb80 (diff)
downloadsnes9x2002-22513386fce71022d59a203a01c71ac67be41d84.tar.gz
snes9x2002-22513386fce71022d59a203a01c71ac67be41d84.tar.bz2
snes9x2002-22513386fce71022d59a203a01c71ac67be41d84.zip
add travis build script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2035525
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,35 @@
+language: generic
+os: linux
+dist: trusty
+sudo: required
+addons:
+ apt:
+ packages:
+ - g++-7
+ sources:
+ - ubuntu-toolchain-r-test
+env:
+ global:
+ - CORE=snes9x2002
+ - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
+ matrix:
+ - PLATFORM=linux_x64
+ - PLATFORM=ngc
+ - PLATFORM=wii
+ - PLATFORM=wiiu
+before_script:
+ - pwd
+ - mkdir -p ~/bin
+ - ln -s /usr/bin/gcc-7 ~/bin/gcc
+ - ln -s /usr/bin/g++-7 ~/bin/g++
+ - ln -s /usr/bin/cpp-7 ~/bin/cpp
+ - export PATH=~/bin:$PATH
+ - ls -l ~/bin
+ - echo $PATH
+ - g++-7 --version
+ - g++ --version
+script:
+ - cd ~/
+ - git clone --depth=50 https://github.com/libretro/libretro-super
+ - cd libretro-super/travis
+ - ./build.sh