-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 822 Bytes
/
blank.yml
File metadata and controls
31 lines (29 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Build
on: [push, pull_request]
jobs:
build_linux:
name: Build on ${{ matrix.image }} (Qt ${{ matrix.qt }})
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
image: [manylinux_2_28]
qt: [6.4.2]
arch: [x86_64]
experimental: [false]
include:
- image: manylinux_2_28
qt: 6.5.3
arch: x86_64
experimental: true
container:
image: ghcr.io/python-limereport/pyside_builder_${{ matrix.image }}_${{ matrix.arch }}:qt-${{ matrix.qt }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build
run: ./build.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: /output/*