Ubuntu 24.04 Nuitka build for arm64 #48
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: Ubuntu 24.04 Nuitka build for arm64 | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tags: | |
| description: 'ubuntu 24.04 Nuitka arm64' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| # Check-out repository | |
| - uses: actions/checkout@v4 | |
| # Setup Python | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
| architecture: 'arm64' | |
| cache: 'pip' | |
| cache-dependency-path: | | |
| **/requirements*.txt | |
| - name: Install Dependencies | |
| run: | | |
| pip install -r src/requirements_arm64.txt | |
| # Build python script into a single executable | |
| - uses: Nuitka/Nuitka-Action@main | |
| with: | |
| nuitka-version: main | |
| script-name: QtTinySA.py | |
| working-directory: ./src | |
| mode: standalone | |
| # Uploads artifact | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: QtTinySA_arm64_2404 | |
| path: ~/work/QtTinySA/QtTinySA/src/build | |
| include-hidden-files: true |