diff options
author | archshift <gh@archshift.com> | 2015-06-15 20:23:44 +0200 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-06-15 20:23:44 +0200 |
commit | 67f61ced6329c97a923a545b47347b0109f045fc (patch) | |
tree | c53d9df9057c931da894016c47625ee85f0fc9c5 | |
parent | Merge pull request #861 from yuriks/tevstage-warning (diff) | |
parent | Appveyor: Create a second archive with only the binaries, for people who don’t have much bandwidth. (diff) | |
download | yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.gz yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.bz2 yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.lz yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.xz yuzu-67f61ced6329c97a923a545b47347b0109f045fc.tar.zst yuzu-67f61ced6329c97a923a545b47347b0109f045fc.zip |
-rw-r--r-- | appveyor.yml | 4 |
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: $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" } |