summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-02-08 16:29:31 +0100
committerGravatar Tony Wasserka2015-02-08 16:29:31 +0100
commit4154560bd5b0a4d02fcab503580cb1b362a79775 (patch)
treef7591c3931127d46539966f2a5e4893724cf405b
parentMerge pull request #542 from chinhodado/patch-1 (diff)
parentAppveyor: Adjust clone depth settings (diff)
downloadyuzu-4154560bd5b0a4d02fcab503580cb1b362a79775.tar.gz
yuzu-4154560bd5b0a4d02fcab503580cb1b362a79775.tar.xz
yuzu-4154560bd5b0a4d02fcab503580cb1b362a79775.zip
Merge pull request #545 from yuriks/patch-1
Appveyor: Do x64 builds
-rw-r--r--appveyor.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 06c9a7909..c9edb9e19 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -2,28 +2,28 @@
2os: unstable 2os: unstable
3 3
4# shallow clone 4# shallow clone
5clone_depth: 1 5clone_depth: 5
6 6
7environment: 7environment:
8 QTDIR: C:\Qt\5.4\msvc2013_opengl 8 QTDIR: C:\Qt\5.4\msvc2013_64_opengl
9 MEGA_EMAIL: 9 MEGA_EMAIL:
10 secure: rEo9CGAYX87GKTqZCZ9vLCNCNqxO5JLgbERaHF3YJWg= 10 secure: rEo9CGAYX87GKTqZCZ9vLCNCNqxO5JLgbERaHF3YJWg=
11 MEGA_PASSWORD: 11 MEGA_PASSWORD:
12 secure: zE1zmgjS/6GfN/19ROl/O0fVR58svORQ5gdtsxI7J8k= 12 secure: zE1zmgjS/6GfN/19ROl/O0fVR58svORQ5gdtsxI7J8k=
13 13
14platform: 14platform:
15 - Win32 15 - x64
16 16
17configuration: 17configuration:
18 - Release 18 - Release
19 19
20install: 20install:
21 - git submodule update --init --recursive 21 - git submodule update --init --recursive --depth 20
22 22
23before_build: 23before_build:
24 - mkdir build 24 - mkdir build
25 - cd build 25 - cd build
26 - cmake .. 26 - cmake -G "Visual Studio 12 Win64" ..
27 - cd .. 27 - cd ..
28 28
29after_build: 29after_build:
@@ -32,16 +32,16 @@ after_build:
32 - wget -q http://megatools.megous.com/builds/megatools-1.9.94-win64.zip 32 - wget -q http://megatools.megous.com/builds/megatools-1.9.94-win64.zip
33 # extract megatools silently. See http://stackoverflow.com/a/11629736/1748450 33 # extract megatools silently. See http://stackoverflow.com/a/11629736/1748450
34 - 7z x megatools-1.9.94-win64.zip | FIND /V "ing " 34 - 7z x megatools-1.9.94-win64.zip | FIND /V "ing "
35 # copy the qt dlls 35 # copy the qt dlls
36 - copy C:\Qt\5.4\msvc2013_opengl\bin\icudt53.dll build\bin\release 36 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\icudt53.dll build\bin\release
37 - copy C:\Qt\5.4\msvc2013_opengl\bin\icuin53.dll build\bin\release 37 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\icuin53.dll build\bin\release
38 - copy C:\Qt\5.4\msvc2013_opengl\bin\icuuc53.dll build\bin\release 38 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\icuuc53.dll build\bin\release
39 - copy C:\Qt\5.4\msvc2013_opengl\bin\Qt5Core.dll build\bin\release 39 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Core.dll build\bin\release
40 - copy C:\Qt\5.4\msvc2013_opengl\bin\Qt5Gui.dll build\bin\release 40 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Gui.dll build\bin\release
41 - copy C:\Qt\5.4\msvc2013_opengl\bin\Qt5OpenGL.dll build\bin\release 41 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5OpenGL.dll build\bin\release
42 - copy C:\Qt\5.4\msvc2013_opengl\bin\Qt5Widgets.dll build\bin\release 42 - copy C:\Qt\5.4\msvc2013_64_opengl\bin\Qt5Widgets.dll build\bin\release
43 - mkdir build\bin\release\platforms\ 43 - mkdir build\bin\release\platforms\
44 - copy C:\Qt\5.4\msvc2013_opengl\plugins\platforms\qwindows.dll build\bin\release\platforms 44 - copy C:\Qt\5.4\msvc2013_64_opengl\plugins\platforms\qwindows.dll build\bin\release\platforms
45 # zip up the build folder -> build.7z 45 # zip up the build folder -> build.7z
46 - 7z a build .\build\bin\release\* 46 - 7z a build .\build\bin\release\*
47 # rename, upload to Mega 47 # rename, upload to Mega