summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.travis-build.sh6
-rwxr-xr-x.travis-deps.sh20
-rw-r--r--.travis-upload.sh1
-rw-r--r--.travis.yml22
4 files changed, 31 insertions, 18 deletions
diff --git a/.travis-build.sh b/.travis-build.sh
index 8ec2ed70c..22a3a9fd6 100755
--- a/.travis-build.sh
+++ b/.travis-build.sh
@@ -11,8 +11,12 @@ fi
11 11
12#if OS is linux or is not set 12#if OS is linux or is not set
13if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then 13if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
14 export CC=gcc-4.9
15 export CXX=g++-4.9
16 export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH
17
14 mkdir build && cd build 18 mkdir build && cd build
15 cmake -DUSE_QT5=OFF .. 19 cmake -DCITRA_FORCE_QT4=ON ..
16 make -j4 20 make -j4
17elif [ "$TRAVIS_OS_NAME" = "osx" ]; then 21elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
18 export Qt5_DIR=$(brew --prefix)/opt/qt5 22 export Qt5_DIR=$(brew --prefix)/opt/qt5
diff --git a/.travis-deps.sh b/.travis-deps.sh
index b9561bb66..d10973410 100755
--- a/.travis-deps.sh
+++ b/.travis-deps.sh
@@ -5,24 +5,24 @@ set -x
5 5
6#if OS is linux or is not set 6#if OS is linux or is not set
7if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then 7if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
8 sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y 8 export CC=gcc-4.9
9 sudo apt-get -qq update 9 export CXX=g++-4.9
10 sudo apt-get -qq install g++-4.9 xorg-dev libglu1-mesa-dev libxcursor-dev 10 mkdir -p $HOME/.local
11 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 90 11
12 curl http://www.cmake.org/files/v2.8/cmake-2.8.11-Linux-i386.tar.gz \
13 | tar -xz -C $HOME/.local --strip-components=1
14
12 ( 15 (
13 git clone https://github.com/glfw/glfw.git --branch 3.0.4 --depth 1 16 git clone https://github.com/glfw/glfw.git --branch 3.1.1 --depth 1
14 mkdir glfw/build && cd glfw/build 17 mkdir glfw/build && cd glfw/build
15 cmake -DBUILD_SHARED_LIBS=ON \ 18 cmake -DBUILD_SHARED_LIBS=ON \
16 -DGLFW_BUILD_EXAMPLES=OFF \ 19 -DGLFW_BUILD_EXAMPLES=OFF \
17 -DGLFW_BUILD_TESTS=OFF \ 20 -DGLFW_BUILD_TESTS=OFF \
21 -DCMAKE_INSTALL_PREFIX=$HOME/.local \
18 .. 22 ..
19 make -j4 && sudo make install 23 make -j4 && make install
20 ) 24 )
21 25
22 sudo apt-get install lib32stdc++6
23 sudo mkdir -p /usr/local
24 curl http://www.cmake.org/files/v2.8/cmake-2.8.11-Linux-i386.tar.gz \
25 | sudo tar -xz -C /usr/local --strip-components=1
26elif [ "$TRAVIS_OS_NAME" = "osx" ]; then 26elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
27 brew tap homebrew/versions 27 brew tap homebrew/versions
28 brew install qt5 glfw3 pkgconfig 28 brew install qt5 glfw3 pkgconfig
diff --git a/.travis-upload.sh b/.travis-upload.sh
index 0904b646a..3a15e8f6a 100644
--- a/.travis-upload.sh
+++ b/.travis-upload.sh
@@ -7,7 +7,6 @@ if [ "$TRAVIS_BRANCH" = "master" ]; then
7 UPLOAD_DIR="/citra/nightly/linux-amd64" 7 UPLOAD_DIR="/citra/nightly/linux-amd64"
8 mkdir "$REV_NAME" 8 mkdir "$REV_NAME"
9 9
10 sudo apt-get -qq install lftp
11 cp build/src/citra/citra "$REV_NAME" 10 cp build/src/citra/citra "$REV_NAME"
12 cp build/src/citra_qt/citra-qt "$REV_NAME" 11 cp build/src/citra_qt/citra-qt "$REV_NAME"
13 elif [ "$TRAVIS_OS_NAME" = "osx" ]; then 12 elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
diff --git a/.travis.yml b/.travis.yml
index 5c882a574..4d21257bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,11 +8,21 @@ env:
8 global: 8 global:
9 - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" 9 - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg="
10 10
11before_install: 11sudo: false
12 - sh .travis-deps.sh
13 12
14script: 13addons:
15 - sh .travis-build.sh 14 apt:
15 sources:
16 - ubuntu-toolchain-r-test
17 packages:
18 - gcc-4.9
19 - g++-4.9
20 - xorg-dev
21 - libglu1-mesa-dev
22 - libxcursor-dev
23 - lib32stdc++6 # For CMake
24 - lftp # To upload builds
16 25
17after_success: 26install: ./.travis-deps.sh
18 - sh .travis-upload.sh 27script: ./.travis-build.sh
28after_success: ./.travis-upload.sh