2015-01-11 18:33:44 +01:00
|
|
|
# it seems that Qt is only installed by default on unstable os at the moment
|
|
|
|
os: unstable
|
|
|
|
|
2015-01-11 19:29:39 +01:00
|
|
|
# shallow clone
|
2015-02-08 15:23:33 +01:00
|
|
|
clone_depth: 5
|
2015-01-11 18:33:44 +01:00
|
|
|
|
|
|
|
environment:
|
2015-02-08 15:23:33 +01:00
|
|
|
QTDIR: C:\Qt\5.4\msvc2013_64_opengl
|
2015-03-07 00:54:09 +01:00
|
|
|
BUILD_PASSWORD:
|
|
|
|
secure: EXGNlWKJsCtbeImEJ5EP9qrxZ+EqUFfNy+CP61nDOMA=
|
2015-01-24 16:45:06 +01:00
|
|
|
|
2015-01-15 07:07:18 +01:00
|
|
|
platform:
|
2015-02-08 15:23:33 +01:00
|
|
|
- x64
|
2015-01-15 07:07:18 +01:00
|
|
|
|
|
|
|
configuration:
|
|
|
|
- Release
|
2015-01-11 18:33:44 +01:00
|
|
|
|
|
|
|
install:
|
2015-02-08 15:23:33 +01:00
|
|
|
- git submodule update --init --recursive --depth 20
|
2015-01-11 18:33:44 +01:00
|
|
|
|
|
|
|
before_build:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2015-02-08 15:23:33 +01:00
|
|
|
- cmake -G "Visual Studio 12 Win64" ..
|
2015-01-11 18:33:44 +01:00
|
|
|
- cd ..
|
2015-01-24 16:45:06 +01:00
|
|
|
|
2015-01-15 02:49:26 +01:00
|
|
|
after_build:
|
2015-03-27 08:54:47 +01:00
|
|
|
# copying the needed QT Dlls is now done post build. See the CMakeLists.txt file in the citra-qt folder
|
2015-03-07 00:54:09 +01: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 03:26:45 +01:00
|
|
|
$GITREV = $(git show -s --format='%h')
|
2015-03-20 00:16:43 +01:00
|
|
|
# Where are these spaces coming from? Regardless, let's remove them
|
|
|
|
$BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
|
2015-06-14 21:39:48 +02:00
|
|
|
$BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
|
2015-03-20 00:16:43 +01:00
|
|
|
# Zip up the build folder
|
2015-03-07 00:54:09 +01:00
|
|
|
7z a $BUILD_NAME .\build\bin\release\*
|
2015-06-14 21:39:48 +02:00
|
|
|
# Do a second archive with only the binaries
|
|
|
|
7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe
|
2015-05-25 20:34:09 +02:00
|
|
|
|
2015-03-20 00:16:43 +01:00
|
|
|
# Download winscp
|
2015-06-21 21:59:55 +02:00
|
|
|
Invoke-WebRequest "http://iweb.dl.sourceforge.net/project/winscp/WinSCP/5.7.3/winscp573.zip" -OutFile "winscp573.zip"
|
2015-06-15 21:14:41 +02:00
|
|
|
7z e -y winscp573.zip
|
2015-05-25 20:34:09 +02:00
|
|
|
|
2015-03-20 00:16:43 +01:00
|
|
|
# Upload to server
|
2015-03-07 00:54:09 +01: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 21:39:48 +02:00
|
|
|
"put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" `
|
2015-03-07 00:54:09 +01:00
|
|
|
"exit"
|
|
|
|
}
|