浏览代码

Merge pull request #15343 from touilleMan/add-gdnative-wrapper-on-ci

[GDnative] Add GDnative wrapper lib on CI build
Rémi Verschelde 7 年之前
父节点
当前提交
db3f87d491
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      .appveyor.yml
  2. 1 1
      .travis.yml

+ 1 - 1
.appveyor.yml

@@ -28,4 +28,4 @@ before_build:
   - SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master"
 
 build_script:
-- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no
+- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no gdnative_wrapper=yes

+ 1 - 1
.travis.yml

@@ -90,5 +90,5 @@ script:
   - if [ "$STATIC_CHECKS" = "yes" ]; then
       sh ./misc/travis/clang-format.sh;
     else
-      scons -j2 CC=$CC CXX=$CXX platform=$GODOT_TARGET TOOLS=$TOOLS verbose=yes progress=no openmp=no;
+      scons -j2 CC=$CC CXX=$CXX platform=$GODOT_TARGET TOOLS=$TOOLS verbose=yes progress=no openmp=no gdnative_wrapper=yes;
     fi