2015-01-11 18:29:39 +00:00
|
|
|
# shallow clone
|
2015-02-08 14:23:33 +00:00
|
|
|
clone_depth: 5
|
2015-01-11 17:33:44 +00:00
|
|
|
|
|
|
|
environment:
|
2015-02-08 14:23:33 +00:00
|
|
|
QTDIR: C:\Qt\5.4\msvc2013_64_opengl
|
2015-03-06 23:54:09 +00:00
|
|
|
BUILD_PASSWORD:
|
|
|
|
secure: EXGNlWKJsCtbeImEJ5EP9qrxZ+EqUFfNy+CP61nDOMA=
|
2015-01-24 15:45:06 +00:00
|
|
|
|
2015-01-15 06:07:18 +00:00
|
|
|
platform:
|
2015-02-08 14:23:33 +00:00
|
|
|
- x64
|
2015-01-15 06:07:18 +00:00
|
|
|
|
|
|
|
configuration:
|
|
|
|
- Release
|
2015-01-11 17:33:44 +00:00
|
|
|
|
|
|
|
install:
|
2015-07-07 19:22:26 +00:00
|
|
|
- git submodule update --init --recursive
|
2015-01-11 17:33:44 +00:00
|
|
|
|
|
|
|
before_build:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2015-02-08 14:23:33 +00:00
|
|
|
- cmake -G "Visual Studio 12 Win64" ..
|
2015-01-11 17:33:44 +00:00
|
|
|
- cd ..
|
2015-01-24 15:45:06 +00:00
|
|
|
|
2015-01-15 01:49:26 +00:00
|
|
|
after_build:
|
2015-03-27 07:54:47 +00:00
|
|
|
# copying the needed QT Dlls is now done post build. See the CMakeLists.txt file in the citra-qt folder
|
2015-03-06 23:54:09 +00:00
|
|
|
- ps: >
|
|
|
|
if (!"$env:APPVEYOR_PULL_REQUEST_TITLE" -and ("$env:APPVEYOR_REPO_BRANCH" -eq "master"))
|
|
|
|
{
|
|
|
|
$GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
|
2015-03-18 02:26:45 +00:00
|
|
|
$GITREV = $(git show -s --format='%h')
|
2015-03-19 23:16:43 +00:00
|
|
|
# Where are these spaces coming from? Regardless, let's remove them
|
|
|
|
$BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
|
2015-06-14 19:39:48 +00:00
|
|
|
$BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
|
2015-03-19 23:16:43 +00:00
|
|
|
# Zip up the build folder
|
2015-03-06 23:54:09 +00:00
|
|
|
7z a $BUILD_NAME .\build\bin\release\*
|
2015-06-14 19:39:48 +00:00
|
|
|
# Do a second archive with only the binaries
|
|
|
|
7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-03-19 23:16:43 +00:00
|
|
|
# Download winscp
|
2015-06-21 19:59:55 +00:00
|
|
|
Invoke-WebRequest "http://iweb.dl.sourceforge.net/project/winscp/WinSCP/5.7.3/winscp573.zip" -OutFile "winscp573.zip"
|
2015-06-15 19:14:41 +00:00
|
|
|
7z e -y winscp573.zip
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-03-19 23:16:43 +00:00
|
|
|
# Upload to server
|
2015-03-06 23:54:09 +00:00
|
|
|
.\WinSCP.com /command `
|
|
|
|
"option batch abort" `
|
|
|
|
"option confirm off" `
|
|
|
|
"open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" `
|
|
|
|
"put $BUILD_NAME /citra/nightly/windows-amd64/" `
|
2015-06-14 19:39:48 +00:00
|
|
|
"put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" `
|
2015-03-06 23:54:09 +00:00
|
|
|
"exit"
|
|
|
|
}
|