Skip to content

Commit 39f7985

Browse files
committed
test fix appveyor. Part 5
1 parent 0825006 commit 39f7985

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

appveyor.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ skip_tags: true
55
image: Visual Studio 2017
66
environment:
77
matrix:
8-
- tbs_arch: Win32
8+
- tbs_arch: x86
99
tbs_tools: mingw
1010
- tbs_arch: x64
1111
tbs_tools: mingw
12-
- tbs_arch: Win32
12+
- tbs_arch: x86
1313
tbs_tools: msvc
1414
tbs_config: Debug
15-
- tbs_arch: Win32
15+
- tbs_arch: x86
1616
tbs_tools: msvc
1717
tbs_config: Release
1818
- tbs_arch: x64
@@ -29,17 +29,12 @@ install:
2929
}
3030
build_script:
3131
- git submodule update --init --recursive
32-
- if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[Win32] (
32+
- if [%tbs_tools%]==[mingw] (
33+
SET PATH=C:\MinGW\bin;%PATH% &&
3334
MKDIR bin &&
3435
CD bin &&
35-
cmake .. &&
36-
make
37-
)
38-
- if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[x64] (
39-
MKDIR bin &&
40-
CD bin &&
41-
cmake .. &&
42-
make
36+
cmake .. -G "MinGW Makefiles"&&
37+
mingw32-make
4338
)
4439
- if [%tbs_tools%]==[msvc] (
4540
msbuild "src\engine.sln" /m /verbosity:minimal /property:PlatformToolset=v141 /t:Clean,Build /p:Platform=%tbs_arch% /p:Configuration=%tbs_config% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"

0 commit comments

Comments
 (0)