mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
Travis: Fail fast, disable JIT for functional tests.
Disable JIT to find cause for random `PANIC: unprotected error in call to Lua API` on Travis (OS X).
This commit is contained in:
parent
6360be982f
commit
2eda611cbc
@ -28,6 +28,7 @@ matrix:
|
||||
- os: osx
|
||||
env: CI_TARGET=gcc
|
||||
compiler: gcc-4.9
|
||||
fast_finish: true
|
||||
before_install:
|
||||
# Pins the version of the java package installed on the Travis VMs
|
||||
# and avoids a lengthy upgrade process for them.
|
||||
|
@ -1,3 +1,8 @@
|
||||
if jit then
|
||||
-- Disable JIT because of random errors on Travis with OS X.
|
||||
jit.off(true, true)
|
||||
end
|
||||
|
||||
require('coxpcall')
|
||||
local Loop = require('nvim.loop')
|
||||
local MsgpackStream = require('nvim.msgpack_stream')
|
||||
|
Loading…
Reference in New Issue
Block a user