mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-02 22:30:39 +00:00
Migrate to seperate file for environmental variables
This commit is contained in:
parent
632b0f489c
commit
54d41f6805
2 changed files with 11 additions and 2 deletions
|
@ -9,7 +9,7 @@ matrix:
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
||||||
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'
|
script: 'travis_wait docker run -v $(pwd):/rpcs3 -v "$HOME/.ccache":/root/.ccache --env-file .travis/travis.env rpcs3/rpcs3-travis-trusty:1.0 /bin/bash -ex /rpcs3/.travis/build-linux.bash'
|
||||||
- os: linux
|
- os: linux
|
||||||
env:
|
env:
|
||||||
- NAME="Linux build"
|
- NAME="Linux build"
|
||||||
|
@ -19,7 +19,7 @@ matrix:
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
install: "docker pull rpcs3/rpcs3-travis-trusty:1.0"
|
||||||
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'
|
script: 'travis_wait docker run -v $(pwd):/rpcs3 -v "$HOME/.ccache":/root/.ccache --env-file .travis/travis.env rpcs3/rpcs3-travis-trusty:1.0 /bin/bash -ex /rpcs3/.travis/build-linux.bash'
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode10
|
osx_image: xcode10
|
||||||
script: "/bin/bash -ex .travis/build-mac.bash"
|
script: "/bin/bash -ex .travis/build-mac.bash"
|
||||||
|
|
9
.travis/travis.env
Normal file
9
.travis/travis.env
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Variables set by Travis CI
|
||||||
|
TRAVIS_PULL_REQUEST
|
||||||
|
TRAVIS_BRANCH
|
||||||
|
TRAVIS_COMMIT
|
||||||
|
# Variables for Travis build matrix
|
||||||
|
COMPILER
|
||||||
|
DEPLOY_APPIMAGE
|
||||||
|
# Private Travis CI variables
|
||||||
|
GITHUB_TOKEN
|
Loading…
Add table
Add a link
Reference in a new issue