Add Intel macOS support to CI #16
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
| # This workflow will install Python dependencies, run tests and lint with a single version of Python | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
| name: Build on Linux | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: "3.13" | |
| - name: Install Qt dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| qt6-base-dev \ | |
| qt6-base-dev-tools \ | |
| qt6-tools-dev \ | |
| qt6-tools-dev-tools \ | |
| build-essential \ | |
| qmake6 qmake6-bin | |
| cd /usr/bin && sudo rm -rf qmake && sudo ln -s qmake6 qmake && cd - | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install -r requirements.txt -U | |
| - name: Build Exe | |
| run: | |
| python3 build.py | |
| - name: Upload ZIP | |
| uses: actions/upload-artifact@v4.3.1 | |
| with: | |
| name: Aura-Text | |
| path: dist |