aboutsummaryrefslogtreecommitdiffhomepage
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 46362d1b..8b420f20 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -33,12 +33,15 @@ 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"
- 7z e -y winscp570.zip
+ Invoke-WebRequest "https://cdn.winscp.net/files/winscp573.zip?secure=yE1jHlRoBZTA0htWnu1OVQ==,1434405422" -OutFile "winscp573.zip"
+ 7z e -y winscp573.zip
# Upload to server
.\WinSCP.com /command `
@@ -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"
}