mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
CI/AppVeyor: per-compiler deps cache #9852
The deps cache does not work for MSVC builds because the MINGW builds ovewrite it. Cache saves 10+ minutes on the build.
This commit is contained in:
@@ -235,6 +235,11 @@ local function hasenv(name)
|
||||
return nil
|
||||
end
|
||||
|
||||
local function deps_prefix()
|
||||
local env = os.getenv('DEPS_PREFIX')
|
||||
return (env and env ~= '') and env or '.deps/usr'
|
||||
end
|
||||
|
||||
local tests_skipped = 0
|
||||
|
||||
local function check_cores(app, force)
|
||||
@@ -263,7 +268,7 @@ local function check_cores(app, force)
|
||||
else
|
||||
initial_path = '.'
|
||||
re = '/core[^/]*$'
|
||||
exc_re = { '^/%.deps$', local_tmpdir, '^/%node_modules$' }
|
||||
exc_re = { '^/%.deps$', '^/%'..deps_prefix()..'$', local_tmpdir, '^/%node_modules$' }
|
||||
db_cmd = gdb_db_cmd
|
||||
random_skip = true
|
||||
end
|
||||
|
Reference in New Issue
Block a user