Skip to content

Commit 1d66f53

Browse files
authored
Merge pull request #1203 from vim-jp/ci-fix-appimage
CI: Fix appimage error
2 parents dd90df3 + 7cef79e commit 1d66f53

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/generate.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111
generate:
1212
runs-on: ubuntu-latest
1313
steps:
14+
- name: Initialization
15+
run: |
16+
sudo apt-get update
17+
# libfuse2 and LD_PRELOAD are needed for appimage.
18+
sudo apt-get -y install libfuse2
19+
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
1420
- name: checkout master
1521
uses: actions/checkout@v2
1622
with:
@@ -64,6 +70,12 @@ jobs:
6470
# work after "generate" to updated vimdoc-ja/master branch
6571
# parallel work conflict vimdoc-ja repo status
6672
steps:
73+
- name: Initialization
74+
run: |
75+
sudo apt-get update
76+
# libfuse2 and LD_PRELOAD are needed for appimage.
77+
sudo apt-get -y install libfuse2
78+
echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
6779
- name: checkout master
6880
uses: actions/checkout@v2
6981
with:

0 commit comments

Comments
 (0)