From 99079cc906967a4eb0058f7f6cec57595717464f Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Thu, 24 Nov 2016 15:49:15 -0800 Subject: Travis: Remove build uploading @archshift has been MIA for a while, so our builds server is currently down. Furthermore, uploading is broken in both Linux and macOS: - The version of lftp in Trusty doesn't support the sftp:auto-confirm option, which means that uploading would hang, even if the server weren't down. It currently tries to connect forever and fails the build with a timeout. - lftp was removed from Homebrew, so it wasn't being installed on macOS and invoking it just failed. --- .travis-upload.sh | 2 -- 1 file changed, 2 deletions(-) (limited to '.travis-upload.sh') diff --git a/.travis-upload.sh b/.travis-upload.sh index 1bec74b3d..2eeda4c50 100755 --- a/.travis-upload.sh +++ b/.travis-upload.sh @@ -14,7 +14,6 @@ if [ "$TRAVIS_EVENT_TYPE" = "push" ]&&[ "$TRAVIS_BRANCH" = "master" ]; then 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" @@ -122,5 +121,4 @@ EOL 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; set sftp:auto-confirm yes; put -O '$UPLOAD_DIR' '$ARCHIVE_NAME'" fi -- cgit v1.2.3