We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adc7a04 commit b10302aCopy full SHA for b10302a
.github/workflows/c-cpp.yml
@@ -3,14 +3,15 @@ name: CI Linux/macOS
3
on:
4
push:
5
branches:
6
- - 'testing_*'
+ - '*'
7
pull_request:
8
9
- 'testing_*'
10
- master
11
jobs:
12
ubuntu-build-qt5:
13
name: Ubuntu CI QT5
14
+ if: false
15
strategy:
16
matrix:
17
os: [ubuntu-20.04, ubuntu-22.04]
@@ -33,6 +34,7 @@ jobs:
33
34
35
ubuntu-build-qt6:
36
name: Ubuntu CI QT6
37
38
39
40
os: [ubuntu-22.04]
@@ -55,7 +57,11 @@ jobs:
55
57
56
58
macos-build:
59
name: MacOS CI
- runs-on: macos-12
60
+ strategy:
61
+ matrix:
62
+ os: [macos-13]
63
+
64
+ runs-on: ${{ matrix.os }}
65
66
steps:
67
- name: Install dependencies
@@ -82,7 +88,7 @@ jobs:
82
88
mkdir build
83
89
cd build
84
90
qmake6 -config release ..
85
- make -j2
91
+ make -j4
86
92
- name: Build dmg
87
93
run: |
94
0 commit comments