Skip to content

Commit a313dca

Browse files
committed
Try neovim test again
1 parent 6bda6ef commit a313dca

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@ jobs:
4141
run: |
4242
bash -ex dogfeeding.sh
4343
44-
- name: Test to create Hello AppImage
44+
- name: Test to create neovim AppImage
4545
run: |
4646
chmod +x ./out/pkg2appimage*.AppImage*
47-
./out/pkg2appimage*.AppImage* recipes/hello.yml
47+
./out/pkg2appimage*.AppImage* recipes/neovim.yml
4848
4949
- name: Verify AppImage Creation and Test
5050
run: |
51-
if ls out/hello-*.AppImage 1> /dev/null 2>&1; then
52-
echo "hello AppImage successfully created."
53-
./out/hello-*.AppImage | tee output.txt
54-
if grep -q "Hello, world!" output.txt; then
55-
echo "hello AppImage test passed."
51+
if ls out/neovim-*.AppImage 1> /dev/null 2>&1; then
52+
echo "neovim AppImage successfully created."
53+
./out/neovim-*.AppImage | tee output.txt
54+
if grep -q "Build type: Release" output.txt; then
55+
echo "neovim AppImage test passed."
5656
else
57-
echo "hello AppImage test failed." >&2
57+
echo "neovim AppImage test failed." >&2
5858
exit 1
5959
fi
6060
else
61-
echo "Failed to create hello AppImage." >&2
61+
echo "Failed to create neovim AppImage." >&2
6262
exit 1
6363
fi
6464

0 commit comments

Comments
 (0)