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