Skip to content

Commit 2bd3d86

Browse files
authored
Merge pull request #123 from heavenshell/topic/ci
Fix CI failing
2 parents b89c050 + 399b82f commit 2bd3d86

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/linux_neovim.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ jobs:
1212
include:
1313
- name: neovim-v05-x64
1414
os: ubuntu-latest
15-
neovim_version: v0.5.0
15+
neovim_version: v0.8.1
1616
runs-on: ${{matrix.os}}
1717
steps:
18+
- name: Initialization
19+
run: |
20+
sudo apt-get update
21+
# libfuse2 and LD_PRELOAD are needed for appimage.
22+
sudo apt-get -y install libfuse2
23+
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
1824
- uses: actions/checkout@v2
1925
- uses: actions/setup-node@v2
2026
with:
21-
node-version: '12.x'
27+
node-version: '16.x'
2228
- name: Download vim
2329
shell: bash
2430
run: |

.github/workflows/linux_vim.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ jobs:
1616
glibc_version: 2.15
1717
runs-on: ${{matrix.os}}
1818
steps:
19+
- name: Initialization
20+
run: |
21+
sudo apt-get update
22+
# libfuse2 and LD_PRELOAD are needed for appimage.
23+
sudo apt-get -y install libfuse2
24+
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
1925
- uses: actions/checkout@v2
2026
- uses: actions/setup-node@v2
2127
with:
22-
node-version: '12.x'
28+
node-version: '16.x'
2329
- name: Download vim
2430
shell: bash
2531
run: |

0 commit comments

Comments
 (0)