diff options
author | James McCoy <jamessan@jamessan.com> | 2018-02-01 08:48:52 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-02-02 07:28:49 -0500 |
commit | 4487657576e30e75d46409544f8a76a761ab3d70 (patch) | |
tree | be87699ef9ebae0b95f5a90a7131e5491f5bf57a | |
parent | e2afcfb020fa16b465dd25d3455cd00487e68915 (diff) | |
download | rneovim-4487657576e30e75d46409544f8a76a761ab3d70.tar.gz rneovim-4487657576e30e75d46409544f8a76a761ab3d70.tar.bz2 rneovim-4487657576e30e75d46409544f8a76a761ab3d70.zip |
travis: Disable LuaJIT for functionaltest-lua build
Since we're already using Lua for the testing this allows us to ensure
our build still works properly without LuaJIT available.
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9a62a8a942..0c1f7da9ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,7 +60,10 @@ jobs: sudo: true - os: linux compiler: gcc - env: FUNCTIONALTEST=functionaltest-lua + env: > + FUNCTIONALTEST=functionaltest-lua + CMAKE_FLAGS="$CMAKE_FLAGS -DPREFER_LUA=ON" + DEPS_CMAKE_FLAGS="$DEPS_CMAKE_FLAGS -DUSE_BUNDLED_LUAJIT=OFF" - os: linux # Travis creates a cache per compiler. Set a different value here to # store 32-bit dependencies in a separate cache. |