summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2015-06-15 11:23:44 -0700
committerGravatar archshift2015-06-15 11:23:44 -0700
commit67f61ced6329c97a923a545b47347b0109f045fc (patch)
treec53d9df9057c931da894016c47625ee85f0fc9c5
parentMerge pull request #861 from yuriks/tevstage-warning (diff)
parentAppveyor: Create a second archive with only the binaries, for people who donā... (diff)
downloadyuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.gz
yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.xz
yuzu-67f61ced6329c97a923a545b47347b0109f045fc.zip
Merge pull request #863 from linkmauve/appveyor-noqt-build
Create a second Windows archive with only the binaries
-rw-r--r--appveyor.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 46362d1b4..2aaa84858 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -33,8 +33,11 @@ after_build:
33 $GITREV = $(git show -s --format='%h') 33 $GITREV = $(git show -s --format='%h')
34 # Where are these spaces coming from? Regardless, let's remove them 34 # Where are these spaces coming from? Regardless, let's remove them
35 $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" 35 $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
36 $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
36 # Zip up the build folder 37 # Zip up the build folder
37 7z a $BUILD_NAME .\build\bin\release\* 38 7z a $BUILD_NAME .\build\bin\release\*
39 # Do a second archive with only the binaries
40 7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe
38 41
39 # Download winscp 42 # Download winscp
40 Invoke-WebRequest "http://hivelocity.dl.sourceforge.net/project/winscp/WinSCP/5.7/winscp570.zip" -OutFile "winscp570.zip" 43 Invoke-WebRequest "http://hivelocity.dl.sourceforge.net/project/winscp/WinSCP/5.7/winscp570.zip" -OutFile "winscp570.zip"
@@ -46,5 +49,6 @@ after_build:
46 "option confirm off" ` 49 "option confirm off" `
47 "open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" ` 50 "open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" `
48 "put $BUILD_NAME /citra/nightly/windows-amd64/" ` 51 "put $BUILD_NAME /citra/nightly/windows-amd64/" `
52 "put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" `
49 "exit" 53 "exit"
50 } 54 }