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
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
arch: x86_64 | |
- os: ubuntu-latest | |
arch: x86_64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- run: pip install aqtinstall | |
# - name: Install Qt | |
# uses: jurplel/install-qt-action@v4 | |
# with: | |
# version: '6.7.1' | |
# cache: 'true' | |
# extra: '--base http://mirrors.ocf.berkeley.edu/qt/' | |
- name: Setup MSVC | |
uses: ilammy/msvc-dev-cmd@v1 | |
# - name: Build wheels | |
# uses: pypa/[email protected] |