diff options
| author | 2016-06-17 09:03:30 -0400 | |
|---|---|---|
| committer | 2016-06-17 10:48:35 -0400 | |
| commit | c283a8509d3edf79a6c8eaf3d709b41d545036b5 (patch) | |
| tree | 7624e68ea1ce2bcab330cfc09e52d7d3ed3c080e | |
| parent | Merge pull request #1898 from archshift/interpreter-split-take2 (diff) | |
| download | yuzu-c283a8509d3edf79a6c8eaf3d709b41d545036b5.tar.gz yuzu-c283a8509d3edf79a6c8eaf3d709b41d545036b5.tar.xz yuzu-c283a8509d3edf79a6c8eaf3d709b41d545036b5.zip | |
travis: Use Qt 5 on Ubuntu CI builds
Diffstat (limited to '')
| -rwxr-xr-x | .travis-build.sh | 2 | ||||
| -rw-r--r-- | .travis.yml | 16 |
2 files changed, 11 insertions, 7 deletions
diff --git a/.travis-build.sh b/.travis-build.sh index 511df04ac..9e9c59b7d 100755 --- a/.travis-build.sh +++ b/.travis-build.sh | |||
| @@ -16,7 +16,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | |||
| 16 | export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH | 16 | export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH |
| 17 | 17 | ||
| 18 | mkdir build && cd build | 18 | mkdir build && cd build |
| 19 | cmake -DCITRA_FORCE_QT4=ON .. | 19 | cmake .. |
| 20 | make -j4 | 20 | make -j4 |
| 21 | 21 | ||
| 22 | ctest -VV -C Release | 22 | ctest -VV -C Release |
diff --git a/.travis.yml b/.travis.yml index 8d86baece..06c00a162 100644 --- a/.travis.yml +++ b/.travis.yml | |||
| @@ -1,15 +1,17 @@ | |||
| 1 | os: | ||
| 2 | - linux | ||
| 3 | - osx | ||
| 4 | |||
| 5 | language: cpp | 1 | language: cpp |
| 6 | 2 | ||
| 3 | matrix: | ||
| 4 | include: | ||
| 5 | - os: linux | ||
| 6 | sudo: true | ||
| 7 | dist: trusty | ||
| 8 | - os: osx | ||
| 9 | sudo: false | ||
| 10 | |||
| 7 | env: | 11 | env: |
| 8 | global: | 12 | global: |
| 9 | - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" | 13 | - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" |
| 10 | 14 | ||
| 11 | sudo: false | ||
| 12 | |||
| 13 | addons: | 15 | addons: |
| 14 | apt: | 16 | apt: |
| 15 | sources: | 17 | sources: |
| @@ -17,6 +19,8 @@ addons: | |||
| 17 | packages: | 19 | packages: |
| 18 | - gcc-5 | 20 | - gcc-5 |
| 19 | - g++-5 | 21 | - g++-5 |
| 22 | - qt5-default | ||
| 23 | - libqt5opengl5-dev | ||
| 20 | - xorg-dev | 24 | - xorg-dev |
| 21 | - lib32stdc++6 # For CMake | 25 | - lib32stdc++6 # For CMake |
| 22 | - lftp # To upload builds | 26 | - lftp # To upload builds |