mowgli is running Geeqie minimal x86_64 AppImage build #545
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 x86_64 AppImage build | |
run-name: ${{ github.actor }} is running Geeqie minimal x86_64 AppImage build | |
on: [push] | |
jobs: | |
Build-AppImage: | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: sudo apt-get update | |
- run: sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin | |
- run: sudo apt-get install curl | |
- run: sudo apt-get install gettext | |
- run: sudo apt-get install pandoc | |
- run: sudo apt-get install yelp-tools | |
- uses: actions/checkout@v4 | |
- run: git fetch --tags --force | |
- run: git fetch --depth=1000000 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: BSFishy/[email protected] | |
with: | |
action: build | |
directory: build | |
setup-options: > | |
-Darchive=disabled | |
-Dcms=disabled | |
-Ddjvu=disabled | |
-Ddoxygen=disabled | |
-Devince=disabled | |
-Dexecinfo=disabled | |
-Dexiv2=disabled | |
-Dgit=disabled | |
-Dgps-map=disabled | |
-Dgtk4=disabled | |
-Dheif=disabled | |
-Dhelp_pdf=disabled | |
-Dj2k=disabled | |
-Djpeg=disabled | |
-Djpegxl=disabled | |
-Dlibraw=disabled | |
-Dlua=disabled | |
-Dnpy=disabled | |
-Dpandoc=disabled | |
-Dpdf=disabled | |
-Dspell=disabled | |
-Dtiff=disabled | |
-Dvideothumbnailer=disabled | |
-Dwebp=disabled | |
-Dyelp-build=disabled | |
options: --verbose | |
meson-version: 1.0.1 | |
- name: build | |
run: DESTDIR=${{ github.workspace }}/AppDir ninja -C build install | |
- name: build AppImage | |
uses: AppImageCrafters/build-appimage-action@master | |
with: | |
recipe: AppImageBuilderMinimal-x86_64.yml | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
tag: continuous | |
name: Continuous build | |
prerelease: true | |
artifacts: "Geeqie-minimal-latest-x86_64.AppImage" | |
- name: Upload logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: logs-all-build-appimage | |
path: ${{ github.workspace }}/build/meson-logs/*.txt | |
retention-days: 5 |