-
Notifications
You must be signed in to change notification settings - Fork 11
74 lines (67 loc) · 1.69 KB
/
qmake.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: QMake Build
on:
push:
paths-ignore: # 下列文件的变更不触发部署,可以自行添加
- '**/picture/**'
- 'cmake/**'
- 'packaging/**'
- '.clang-*'
- '.gitignore'
- 'CMake*'
- 'LICENSE'
- 'README*'
pull_request:
paths-ignore: # 下列文件的变更不触发部署,可以自行添加
- '**/picture/**'
- 'cmake/**'
- 'packaging/**'
- '.clang-*'
- '.gitignore'
- 'CMake*'
- 'LICENSE'
- 'README*'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-2019
- macos-latest
- ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
with:
os_name: ${{ matrix.os }}
- uses: RealChuan/install-jom@main
- name: mkdir build
shell: bash
run: |
mkdir build
- name: msvc-build
if: startsWith(matrix.os, 'windows')
shell: pwsh
run: |
..\scripts\windows\setVsDev.ps1 -VersionRange "[16.0,17.0)" -Arch "x64"
& qmake ./../.
& jom
working-directory: build
- name: ubuntu-build
if: startsWith(matrix.os, 'ubuntu')
shell: bash
run: |
qmake ./../.
make -j $(nproc)
working-directory: build
- name: macos-build
if: startsWith(matrix.os, 'macos')
shell: bash
run: |
qmake ./../.
make -j $(sysctl -n hw.ncpu)
working-directory: build