2023-08-26 18:26:50 +03:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2023-08-26 18:34:10 +03:00
|
|
|
build_linux:
|
|
|
|
name: Build on ${{ matrix.image }} (Qt ${{ matrix.qt }} )
|
2023-08-26 18:26:50 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
image: [manylinux_2_28]
|
2023-08-26 18:37:12 +03:00
|
|
|
qt: [6.4.2]
|
|
|
|
# qt: [6.4.2, 5.15.2]
|
2023-08-26 18:26:50 +03:00
|
|
|
arch: [x86_64]
|
|
|
|
container:
|
|
|
|
image: ghcr.io/python-limereport/pyside_builder_${{ matrix.image }}_${{ matrix.arch }}:qt-${{ matrix.qt }}
|
|
|
|
steps:
|
2023-08-26 18:37:12 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-08-26 18:34:10 +03:00
|
|
|
- run: ./build.sh
|