2014-04-25 16:57:00 +00:00
|
|
|
language: cpp
|
2015-08-17 15:14:29 +00:00
|
|
|
matrix:
|
2018-07-16 01:12:43 +00:00
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
env:
|
|
|
|
- NAME="Linux build"
|
|
|
|
- COMPILER="gcc"
|
|
|
|
dist: trusty
|
|
|
|
services: docker
|
|
|
|
cache: ccache
|
|
|
|
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
2018-09-20 18:07:35 +00:00
|
|
|
script: 'travis_wait docker run -v $(pwd):/rpcs3 -v "$HOME/.ccache":/root/.ccache -e TRAVIS_PULL_REQUEST -e TRAVIS_BRANCH -e UPLOAD_URL -e COMPILER rpcs3/rpcs3-travis-trusty:1.0 /bin/bash -ex /rpcs3/.travis/build-linux.bash'
|
2018-07-16 01:12:43 +00:00
|
|
|
- os: linux
|
|
|
|
env:
|
|
|
|
- NAME="Linux build"
|
|
|
|
- COMPILER="clang"
|
|
|
|
- DEPLOY_APPIMAGE="true"
|
|
|
|
dist: trusty
|
|
|
|
services: docker
|
|
|
|
cache: ccache
|
|
|
|
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
2018-09-20 18:07:35 +00:00
|
|
|
script: 'travis_wait docker run -v $(pwd):/rpcs3 -v "$HOME/.ccache":/root/.ccache -e TRAVIS_PULL_REQUEST -e TRAVIS_BRANCH -e TRAVIS_COMMIT -e COMPILER -e UPLOAD_URL -e DEPLOY_APPIMAGE rpcs3/rpcs3-travis-trusty:1.0 /bin/bash -ex /rpcs3/.travis/build-linux.bash'
|
2018-07-16 01:12:43 +00:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode10
|
|
|
|
script: "/bin/bash -ex .travis/build-mac.bash"
|
|
|
|
cache: ccache
|
|
|
|
|
2014-07-09 19:16:17 +00:00
|
|
|
git:
|
2018-01-06 13:02:20 +00:00
|
|
|
depth: false # Unshallow clone to obtain proper GIT_VERSION
|
2018-09-18 10:07:33 +00:00
|
|
|
submodules: false
|