mowgli is running Geeqie minimal aarch64 AppImage build #555
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Geeqie minimal aarch64 AppImage build | |
run-name: ${{ github.actor }} is running Geeqie minimal aarch64 AppImage build | |
on: [push] | |
jobs: | |
Build-AppImage: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --tags --force | |
- run: git fetch --depth=1000000 | |
- name: Set up ARM64 build environment | |
uses: pguyot/[email protected] | |
with: | |
base_image: raspios_lite_arm64:latest | |
cpu: cortex-a53 | |
image_additional_mb: 8000 | |
bind_mount_repository: false | |
import_github_env: true | |
export_github_env: true | |
copy_artifact_path: "*.AppImage;build/meson-logs/*.txt" | |
commands: | | |
yes | sudo apt-get update | |
yes | sudo apt-get install build-essential | |
yes | sudo apt-get install curl | |
yes | sudo apt-get install gettext | |
yes | sudo apt-get install git | |
yes | sudo apt-get install libgtk-3-bin | |
yes | sudo apt-get install libgtk-3-dev | |
yes | sudo apt-get install meson | |
yes | sudo apt-get install ninja-build | |
yes | sudo apt-get install pandoc | |
yes | sudo apt-get install python3 | |
yes | sudo apt-get install python3-pip | |
yes | sudo apt-get install python3-setuptools | |
yes | sudo apt-get install python3-wheel | |
yes | sudo apt-get install wget fuse | |
yes | sudo apt-get install yelp-tools | |
mkdir -p $GITHUB_WORKSPACE/AppDir | |
mkdir -p $GITHUB_WORKSPACE/AppDir/usr | |
meson setup \ | |
-Darchive=disabled \ | |
-Dcms=disabled \ | |
-Ddjvu=disabled \ | |
-Ddoxygen=disabled \ | |
-Devince=disabled \ | |
-Dexecinfo=disabled \ | |
-Dexiv2=disabled \ | |
-Dexr=disabled \ | |
-Dfits=disabled \ | |
-Dgps-map=disabled \ | |
-Dheif=disabled \ | |
-Dhelp_pdf=disabled \ | |
-Dj2k=disabled \ | |
-Djpeg=disabled \ | |
-Djpegxl=disabled \ | |
-Dlibraw=disabled \ | |
-Dlua=disabled \ | |
-Dnpy=disabled \ | |
-Dpdf=disabled \ | |
-Dspell=disabled \ | |
-Dtiff=disabled \ | |
-Dvideothumbnailer=disabled \ | |
-Dwebp=disabled \ | |
-Dprefix=$GITHUB_WORKSPACE/AppDir/usr build | |
ninja -C build install | |
mkdir -p tools | |
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-aarch64.AppImage \ | |
-O tools/linuxdeploy-aarch64.AppImage | |
chmod +x tools/linuxdeploy-aarch64.AppImage | |
tools/linuxdeploy-aarch64.AppImage \ | |
--desktop-file $GITHUB_WORKSPACE/AppDir/usr/share/applications/org.geeqie.Geeqie.desktop \ | |
--icon-file $GITHUB_WORKSPACE/AppDir/usr/share/pixmaps/geeqie.png \ | |
--appdir $GITHUB_WORKSPACE/AppDir \ | |
--output appimage | |
mv Geeqie-aarch64.AppImage Geeqie-minimal-latest-aarch64.AppImage | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
tag: continuous | |
name: Continuous build | |
prerelease: true | |
artifacts: "*.AppImage" | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: logs-all-build-appimage | |
path: "*-log.txt" | |
retention-days: 5 |