summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-01-04 21:16:08 +0100
committerGitHub <noreply@github.com>2018-01-04 21:16:08 +0100
commitdb3f87d49171024cce3757c102db7de55b5b2c8c (patch)
tree4c15c709c54cbeb32d59993b7b59659c7431cae8
parent1e556173b57ac2d74dae5af2d81d79e25593e266 (diff)
parente7965b0f8af6150eba68c1c422f475957c48101c (diff)
Merge pull request #15343 from touilleMan/add-gdnative-wrapper-on-ci
[GDnative] Add GDnative wrapper lib on CI build
-rw-r--r--.appveyor.yml2
-rw-r--r--.travis.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index aeee15e652..708961fd92 100644
--- a/.appveyor.yml
+++ b/.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
diff --git a/.travis.yml b/.travis.yml
index 0dfeaf16e1..9df2388b8e 100644
--- a/.travis.yml
+++ b/.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