.travis.yml 669 B

1234567891011121314151617181920212223242526272829303132333435
  1. language: generic
  2. os: linux
  3. dist: trusty
  4. sudo: required
  5. addons:
  6. apt:
  7. packages:
  8. - g++-7
  9. sources:
  10. - ubuntu-toolchain-r-test
  11. env:
  12. global:
  13. - CORE=nestopia
  14. - COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
  15. matrix:
  16. - PLATFORM=linux_x64
  17. - PLATFORM=ngc
  18. - PLATFORM=wii
  19. before_script:
  20. - pwd
  21. - mkdir -p ~/bin
  22. - ln -s /usr/bin/gcc-7 ~/bin/gcc
  23. - ln -s /usr/bin/g++-7 ~/bin/g++
  24. - ln -s /usr/bin/cpp-7 ~/bin/cpp
  25. - export PATH=~/bin:$PATH
  26. - ls -l ~/bin
  27. - echo $PATH
  28. - g++-7 --version
  29. - g++ --version
  30. script:
  31. - cd ~/
  32. - git clone --depth=50 https://github.com/libretro/libretro-super
  33. - cd libretro-super/travis
  34. - ./build.sh