File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ environment:
19
19
# - cmd: .appveyor\install-lua.cmd
20
20
21
21
build_script :
22
- - git submodule update --init --recursive
22
+ - if [%BUILDSYSTEM%]==[MSVC] git submodule update --init --recursive
23
+ - if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]==[x86] if [%CONFIGURATION%]==[Debug] (
24
+ git submodule update --init --recursive
25
+ )
23
26
24
27
# Remove sh.exe from the path otherwise CMake will complain:
25
28
# "sh.exe was found in your PATH, here: C:/Program Files/Git/usr/bin/sh.exe"
@@ -30,7 +33,7 @@ build_script:
30
33
- if [%BUILDSYSTEM%]==[MinGW] SET "PATH=C:\MinGW-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\MinGW64\bin;%PATH%"
31
34
32
35
- ECHO %PATH%
33
- - if [%BUILDSYSTEM%]==[MinGW] && [%PLATFORM%] = [x86] && [%CONFIGURATION%] = [Debug] (
36
+ - if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]== [x86] if [%CONFIGURATION%]== [Debug] (
34
37
MinGW32-make --version &&
35
38
g++ --version &&
36
39
MKDIR bin &&
@@ -44,7 +47,10 @@ build_script:
44
47
45
48
# create artifacts
46
49
after_build :
47
- - xr_pack_build.cmd
50
+ - if [%BUILDSYSTEM%]==[MSVC] xr_pack_build.cmd
51
+ - if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]==[x86] if [%CONFIGURATION%]==[Debug] (
52
+ xr_pack_build.cmd
53
+ )
48
54
49
55
test : off
50
56
artifacts :
You can’t perform that action at this time.
0 commit comments