mirror of
https://github.com/neovim/neovim.git
synced 2025-12-17 20:05:38 +00: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:
@@ -28,6 +28,7 @@ matrix:
|
|||||||
- os: osx
|
- os: osx
|
||||||
env: CI_TARGET=gcc
|
env: CI_TARGET=gcc
|
||||||
compiler: gcc-4.9
|
compiler: gcc-4.9
|
||||||
|
fast_finish: true
|
||||||
before_install:
|
before_install:
|
||||||
# Pins the version of the java package installed on the Travis VMs
|
# Pins the version of the java package installed on the Travis VMs
|
||||||
# and avoids a lengthy upgrade process for them.
|
# 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')
|
require('coxpcall')
|
||||||
local Loop = require('nvim.loop')
|
local Loop = require('nvim.loop')
|
||||||
local MsgpackStream = require('nvim.msgpack_stream')
|
local MsgpackStream = require('nvim.msgpack_stream')
|
||||||
|
|||||||
Reference in New Issue
Block a user