blob: 43566dc0ef0b77be8260789b48a127efa29cc353 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
name: master Build Matrix
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_ubuntu_20:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: jurplel/install-qt-action@v2
with:
version: '5.12.8'
- name: make
run: make
build_ubuntu_18:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: jurplel/install-qt-action@v2
with:
version: '5.9.5'
- name: make
run: make
# Disabled until both aqinstall and install-qt-action support the fixes…
# build_windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: MasterQ32/install-qt-action@master
# with:
# version: '5.15.0'
# host: 'windows'
# target: 'desktop'
# arch: 'win64_mingw81'
# install-deps: 'true'
# tools: 'tools_openssl_x64 qt.tools.openssl.win_x64;tools_openssl_src qt.tools.openssl'
# - name: build and deploy
# run: ./build-and-deploy.bat
# working-directory: ./ci/
|