File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments