Skip to content

Commit

Permalink
Merge pull request #123 from heavenshell/topic/ci
Browse files Browse the repository at this point in the history
Fix CI failing
  • Loading branch information
heavenshell authored Dec 12, 2022
2 parents b89c050 + 399b82f commit 2bd3d86
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/linux_neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ jobs:
include:
- name: neovim-v05-x64
os: ubuntu-latest
neovim_version: v0.5.0
neovim_version: v0.8.1
runs-on: ${{matrix.os}}
steps:
- name: Initialization
run: |
sudo apt-get update
# libfuse2 and LD_PRELOAD are needed for appimage.
sudo apt-get -y install libfuse2
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '16.x'
- name: Download vim
shell: bash
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/linux_vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ jobs:
glibc_version: 2.15
runs-on: ${{matrix.os}}
steps:
- name: Initialization
run: |
sudo apt-get update
# libfuse2 and LD_PRELOAD are needed for appimage.
sudo apt-get -y install libfuse2
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '16.x'
- name: Download vim
shell: bash
run: |
Expand Down

0 comments on commit 2bd3d86

Please sign in to comment.