0
0
mirror of https://github.com/python-LimeReport/pyside.git synced 2025-10-15 04:01:39 +03:00

add windows build

This commit is contained in:
2024-03-10 20:50:34 +03:00
parent 0ded3ecf95
commit 4c1c822099
3 changed files with 67 additions and 54 deletions

View File

@@ -23,8 +23,30 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build
run: ./build.sh
run: python build.py
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: /output/*
build_windows:
name: Build on Windows (Qt ${{ matrix.qt }})
runs-on: windows-2019
strategy:
matrix:
qt: 6.4.2
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build
run: python build.py
- name: Upload artifact
uses: actions/upload-artifact@v3
with: