mirror of
https://github.com/python-LimeReport/pyside.git
synced 2025-03-21 01:33:43 +03:00
18 lines
431 B
YAML
18 lines
431 B
YAML
|
name: Build
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build_wheels:
|
||
|
name: Build wheels on ${{ matrix.image }} (Qt ${{ matrix.qt }} )
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
image: [manylinux_2_28]
|
||
|
qt: [6.4.2, 5.15.2]
|
||
|
arch: [x86_64]
|
||
|
container:
|
||
|
image: ghcr.io/python-limereport/pyside_builder_${{ matrix.image }}_${{ matrix.arch }}:qt-${{ matrix.qt }}
|
||
|
steps:
|
||
|
- run: echo test;
|