Skip to content

Commit b10302a

Browse files
committed
MacOS: Added support for MacOS13
1 parent adc7a04 commit b10302a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/c-cpp.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ name: CI Linux/macOS
33
on:
44
push:
55
branches:
6-
- 'testing_*'
6+
- '*'
77
pull_request:
88
branches:
99
- 'testing_*'
1010
- master
1111
jobs:
1212
ubuntu-build-qt5:
1313
name: Ubuntu CI QT5
14+
if: false
1415
strategy:
1516
matrix:
1617
os: [ubuntu-20.04, ubuntu-22.04]
@@ -33,6 +34,7 @@ jobs:
3334

3435
ubuntu-build-qt6:
3536
name: Ubuntu CI QT6
37+
if: false
3638
strategy:
3739
matrix:
3840
os: [ubuntu-22.04]
@@ -55,7 +57,11 @@ jobs:
5557

5658
macos-build:
5759
name: MacOS CI
58-
runs-on: macos-12
60+
strategy:
61+
matrix:
62+
os: [macos-13]
63+
64+
runs-on: ${{ matrix.os }}
5965

6066
steps:
6167
- name: Install dependencies
@@ -82,7 +88,7 @@ jobs:
8288
mkdir build
8389
cd build
8490
qmake6 -config release ..
85-
make -j2
91+
make -j4
8692
- name: Build dmg
8793
run: |
8894
cd build

0 commit comments

Comments
 (0)