CI: upload builds to builds.citra-emu.org instead of MEGA

This commit is contained in:
archshift 2015-03-06 15:54:09 -08:00
parent b56829df02
commit 6cc1a07235
6 changed files with 65 additions and 48 deletions

6
.travis-build.sh Normal file → Executable file
View file

@ -4,13 +4,13 @@ set -e
set -x
#if OS is linux or is not set
if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
mkdir build && cd build
cmake -DUSE_QT5=OFF ..
make -j4
elif [ "$TRAVIS_OS_NAME" = osx ]; then
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
export Qt5_DIR=$(brew --prefix)/opt/qt5
mkdir build && cd build
cmake .. -GXcode
xcodebuild
xcodebuild -configuration Release
fi