aboutsummaryrefslogtreecommitdiffhomepage
path: root/appveyor.yml
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-14 20:39:48 +0100
committerGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-15 18:57:18 +0100
commit39e8c01f228679ae1e8e9f46d54a7ab2e13dcc98 (patch)
tree35556524e132197e4eb44100f1f34bc419b5e032 /appveyor.yml
parentbd5c943c658f0fa74531e845242f7b00c504b9dc (diff)
Appveyor: Create a second archive with only the binaries, for people who don’t have much bandwidth.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 46362d1b..2aaa8485 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -33,8 +33,11 @@ after_build:
$GITREV = $(git show -s --format='%h')
# Where are these spaces coming from? Regardless, let's remove them
$BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
+ $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
# Zip up the build folder
7z a $BUILD_NAME .\build\bin\release\*
+ # Do a second archive with only the binaries
+ 7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe
# Download winscp
Invoke-WebRequest "http://hivelocity.dl.sourceforge.net/project/winscp/WinSCP/5.7/winscp570.zip" -OutFile "winscp570.zip"
@@ -46,5 +49,6 @@ after_build:
"option confirm off" `
"open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" `
"put $BUILD_NAME /citra/nightly/windows-amd64/" `
+ "put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" `
"exit"
}