From 6cc1a0723583817d1c1bad13db5167c07aa84aa2 Mon Sep 17 00:00:00 2001 From: archshift Date: Fri, 6 Mar 2015 15:54:09 -0800 Subject: CI: upload builds to builds.citra-emu.org instead of MEGA --- .travis-upload.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .travis-upload.sh (limited to '.travis-upload.sh') diff --git a/.travis-upload.sh b/.travis-upload.sh new file mode 100644 index 00000000..4b9446a9 --- /dev/null +++ b/.travis-upload.sh @@ -0,0 +1,29 @@ +if [ "$TRAVIS_BRANCH" = "master" ]; then + GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`" + GITREV="`git show -s --format='%h'`" + + if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then + REV_NAME="citra-${GITDATE}-${GITREV}-linux-amd64" + UPLOAD_DIR="/citra/nightly/linux-amd64" + mkdir "$REV_NAME" + + sudo apt-get -qq install lftp + cp build/src/citra/citra "$REV_NAME" + cp build/src/citra_qt/citra-qt "$REV_NAME" + elif [ "$TRAVIS_OS_NAME" = "osx" ]; then + REV_NAME="citra-${GITDATE}-${GITREV}-osx-amd64" + UPLOAD_DIR="/citra/nightly/osx-amd64" + mkdir "$REV_NAME" + + brew install lftp + cp build/src/citra/Release/citra "$REV_NAME" + cp -r build/src/citra_qt/Release/citra-qt.app "$REV_NAME" + + # move qt libs into app bundle for deployment + $(brew --prefix)/opt/qt5/bin/macdeployqt "${REV_NAME}/citra-qt.app" + fi + + ARCHIVE_NAME="${REV_NAME}.tar.xz" + tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" + lftp -c "open -u citra-builds,$BUILD_PASSWORD sftp://builds.citra-emu.org; put -O '$UPLOAD_DIR' '$ARCHIVE_NAME'" +fi -- cgit v1.2.3