BuildLinux #33
Workflow file for this run
This file contains hidden or 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: BuildLinux | |
| on: workflow_dispatch | |
| jobs: | |
| buildAssets: | |
| uses: ./.github/workflows/build_assets.yml | |
| buildLinux-AppImage: | |
| needs: buildAssets | |
| # Needs to stay on 22.04 as long as we're using manylinux_2_28 | |
| # as libxcb-cursor0 in 22.04 supports glibc >= 2.17 | |
| runs-on: ubuntu-22.04 | |
| env: | |
| PYTHON_VERSION: "3.13" | |
| LINUX_TAG: "manylinux_2_28" | |
| LINUX_ARCH: "x86_64" | |
| steps: | |
| - name: Python Setup | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| architecture: x64 | |
| - name: Install Packages (apt) | |
| run: | | |
| sudo apt update | |
| sudo apt install libxcb-cursor0 | |
| - name: Install Packages (pip) | |
| run: pip install python-appimage setuptools | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| - name: Download Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: nw-assets | |
| path: novelwriter/assets | |
| - name: Build AppImage | |
| id: build | |
| run: | | |
| wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$LINUX_ARCH.AppImage | |
| chmod +x appimagetool-$LINUX_ARCH.AppImage | |
| export APPIMAGE_TOOL_EXEC="$(pwd)/appimagetool-$LINUX_ARCH.AppImage" | |
| echo "BUILD_VERSION=$(python pkgutils.py version)" >> $GITHUB_OUTPUT | |
| python pkgutils.py build-appimage $LINUX_TAG $LINUX_ARCH $PYTHON_VERSION | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: novelWriter-${{ steps.build.outputs.BUILD_VERSION }}-Linux-AppImage | |
| path: dist_appimage/*.AppImage* | |
| if-no-files-found: error | |
| retention-days: 14 |