2015-01-11 17:33:44 +00:00
|
|
|
# it seems that Qt is only installed by default on unstable os at the moment
|
|
|
|
os: unstable
|
|
|
|
|
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-02-08 14:23:33 +00:00
|
|
|
- git submodule update --init --recursive --depth 20
|
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-02-08 14:23:33 +00:00
|
|
|
# copy the qt dlls
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\icudt53.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\icuin53.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\icuuc53.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Core.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Gui.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5OpenGL.dll build\bin\release
|
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Widgets.dll build\bin\release
|
2015-01-24 16:54:03 +00:00
|
|
|
- mkdir build\bin\release\platforms\
|
2015-02-08 14:23:33 +00:00
|
|
|
- copy C:\Qt\5.4\msvc2013_64_opengl\plugins\platforms\qwindows.dll build\bin\release\platforms
|
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 " ",""
|
|
|
|
# Zip up the build folder
|
2015-03-06 23:54:09 +00:00
|
|
|
7z a $BUILD_NAME .\build\bin\release\*
|
|
|
|
|
2015-03-19 23:16:43 +00:00
|
|
|
# Download winscp
|
2015-03-06 23:54:09 +00:00
|
|
|
Invoke-WebRequest "http://hivelocity.dl.sourceforge.net/project/winscp/WinSCP/5.7/winscp570.zip" -OutFile "winscp570.zip"
|
|
|
|
7z e -y winscp570.zip
|
|
|
|
|
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/" `
|
|
|
|
"exit"
|
|
|
|
}
|