Skip to content

Commit 279ed58

Browse files
committed
ci: update 0.11.3, add retry on Win/MacOS
1 parent b9e3b46 commit 279ed58

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
rev: [nightly, v0.11.2]
21+
rev: [nightly, v0.11.3]
2222
include:
2323
- os: macos-latest
2424
install-deps: brew update && brew install fzf ripgrep fd

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: rhysd/action-setup-vim@v1
1313
with:
1414
neovim: true
15-
version: v0.11.2
15+
version: v0.11.3
1616

1717
- name: install lua-language-server
1818
env:

lua/fzf-lua/test/helpers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ local os_detect = {
3636
},
3737
MAC = { name = "MacOS", fn = function() return vim.fn.has("mac") == 1 end },
3838
LINUX = { name = "Linux", fn = function() return vim.fn.has("linux") == 1 end },
39-
STABLE = { name = "Neovim stable", fn = function() return M.NVIM_VERSION() == "0.11.2" end },
39+
STABLE = { name = "Neovim stable", fn = function() return M.NVIM_VERSION() == "0.11.3" end },
4040
NIGHTLY = { name = "Neovim nightly", fn = function() return vim.fn.has("nvim-0.12") == 1 end },
4141
}
4242

tests/api_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local new_set = MiniTest.new_set
77

88
local T = helpers.new_set_with_child(child)
99

10-
T["api"] = new_set()
10+
T["api"] = new_set({ n_retry = not helpers.IS_LINUX() and 5 or nil })
1111

1212
T["api"]["fzf_exec"] = new_set()
1313

tests/file/ui_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ local sleep = function(ms) helpers.sleep(ms, child) end
1919

2020
local T = helpers.new_set_with_child(child)
2121

22-
T["files"] = new_set()
22+
T["files"] = new_set({ n_retry = not helpers.IS_LINUX() and 5 or nil })
2323

2424
T["files"]["close|abort"] = new_set({ parametrize = { { "<esc>" }, { "<c-c>" } } }, {
2525
function(key)

0 commit comments

Comments
 (0)