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-27 11:46:26 +03:00
|
|
|
- run: echo "QT_VERSION=${{ matrix.qt }}" >> "$GITHUB_ENV"
|
2023-08-26 18:34:10 +03:00
|
|
|
- run: ./build.sh
|
2023-08-27 20:36:48 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
path: /output/*
|