gitlab-ci, build/linux: Ensure that AppImage .log can always be downloaded

The fix is how we do in any other job.
This commit is contained in:
Bruno 2024-11-30 20:24:10 -03:00
parent 5948f8176b
commit 058d62c308
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -301,12 +301,13 @@ gimp-debian-x64:
# Check install
- ninja install
- cd ..
# Make sure that any Debian pipeline is easily testable relocatable on local Debian
# Make sure that any Debian pipeline is easily testable locally on any distro
- bash build/linux/appimage/2_bundle-gimp-appimage.sh
artifacts:
expose_as: 'Linux appimage'
paths:
- build/linux/appimage/_Output/
- appimagetool.log
- _install/
- _build/meson-logs/meson-log.txt
- _build/meson-dist/

View File

@ -330,5 +330,4 @@ rm -r $APP_DIR
if [ "$GITLAB_CI" ]; then
mkdir -p build/linux/appimage/_Output/
mv GIMP*.AppImage build/linux/appimage/_Output/
mv *.log build/linux/appimage/_Output/
fi