xsdg is running Geeqie aarch64 AppImage build #47
Workflow file for this run
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 aarch64 AppImage build | |
run-name: ${{ github.actor }} is running Geeqie aarch64 AppImage build | |
on: [push] | |
jobs: | |
Build-AppImage: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [aarch64] | |
include: | |
- arch: aarch64 | |
cpu: cortex-a53 | |
base_image: raspios_lite_arm64:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --tags --force | |
- run: git fetch --depth=1000000 | |
- uses: pguyot/arm-runner-action@v2 | |
with: | |
base_image: ${{ matrix.base_image }} | |
cpu: ${{ matrix.cpu }} | |
cpu_info: ${{ matrix.cpu_info }} | |
image_additional_mb: 8000 | |
bind_mount_repository: false | |
import_github_env: true | |
export_github_env: true | |
copy_artifact_path: geeqie.gz | |
commands: | | |
yes | sudo apt-get update | |
yes | sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin | |
yes | sudo apt-get update | |
yes | sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin | |
yes | sudo apt-get install curl | |
yes | sudo apt-get install evince | |
yes | sudo apt-get install gettext | |
yes | sudo apt-get install git | |
yes | sudo apt-get install libarchive-dev | |
yes | sudo apt-get install libchamplain-0.12-dev libchamplain-gtk-0.12-dev | |
yes | sudo apt-get install libdw-dev | |
yes | sudo apt-get install libdwarf-dev | |
yes | sudo apt-get install libffmpegthumbnailer-dev | |
yes | sudo apt-get install libgexiv2-dev | |
yes | sudo apt-get install libgspell-1-dev | |
yes | sudo apt-get install libheif-dev | |
yes | sudo apt-get install liblua5.3-dev | |
yes | sudo apt-get install libpoppler-glib-dev | |
yes | sudo apt-get install libraw-dev libomp-dev | |
yes | sudo apt-get install libunwind-dev | |
yes | sudo apt-get install libwebp-dev | |
yes | sudo apt-get install meson | |
yes | sudo apt-get install pandoc | |
yes | sudo apt-get install python3 python3-pip python3-setuptools python3-wheel ninja-build | |
yes | sudo apt-get install yelp-tools | |
mkdir -p $GITHUB_WORKSPACE/AppDir | |
mkdir -p $GITHUB_WORKSPACE/AppDir/usr | |
meson setup -Ddoxygen=disabled -Dyelp-build=disabled -Dprefix=$GITHUB_WORKSPACE/AppDir/usr build | |
ninja -C build install | |
tar -czvf geeqie.gz $GITHUB_WORKSPACE/ | |
- run: tar -xvf geeqie.gz | |
- run: mkdir -p AppDir | |
- run: cp -var ./home/runner/work/geeqie/geeqie/AppDir/ . | |
- uses: AppImageCrafters/build-appimage-action@master | |
with: | |
recipe: AppImageBuilder-aarch64.yml | |
- 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: /home/runner/work/geeqie/geeqie/build/meson-logs/*.txt | |
retention-days: 5 |