diff options
author | bunnei <bunneidev@gmail.com> | 2015-03-17 21:45:43 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-03-17 21:45:43 -0400 |
commit | 99fc82b5c0eaaadb3cc6c495fc04f9641358b11c (patch) | |
tree | 993071eefc46030a793be382a19fe82fd0aa0e40 /upload_to_mega.js | |
parent | 580b3178216656e31a505a5cd5d743befabfcde5 (diff) | |
parent | 6cc1a0723583817d1c1bad13db5167c07aa84aa2 (diff) |
Merge pull request #635 from archshift/builds
CI: upload builds to builds.citra-emu.org instead of MEGA
Diffstat (limited to 'upload_to_mega.js')
-rw-r--r-- | upload_to_mega.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/upload_to_mega.js b/upload_to_mega.js deleted file mode 100644 index c0abd5ed5..000000000 --- a/upload_to_mega.js +++ /dev/null @@ -1,28 +0,0 @@ -var util = require('util'); -var exec = require('child_process').exec; -var sanitize = require("sanitize-filename"); - -var email = process.env.MEGA_EMAIL; -var password = process.env.MEGA_PASSWORD; -var sourceFileName = 'build.7z'; -var dstFileName = process.env.APPVEYOR_REPO_COMMIT.substring(0, 8) + " - " + - process.env.APPVEYOR_REPO_COMMIT_MESSAGE.substring(0, 100) + ".7z"; -dstFileName = sanitize(dstFileName); - -var cmd = util.format('megaput ../%s --path \"/Root/Citra/Windows/%s\" --username=%s --password=%s --no-progress', - sourceFileName, - dstFileName, - email, - password); - -// only upload build on master branch, and not on other branches or PRs -if (process.env.APPVEYOR_REPO_BRANCH == "master") { - console.log("Uploading file " + dstFileName + " to Mega..."); - exec(cmd, function(error, stdout, stderr) { - console.log('stdout: ' + stdout); - console.log('stderr: ' + stderr); - if (error !== null) { - console.log('exec error: ' + error); - } - }); -} |