Skip to content

Commit d6a6ee6

Browse files
authored
Update GitHub actions for build test
Bump the macos version
1 parent 9ffed4b commit d6a6ee6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build_tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,20 @@ jobs:
3434
- {
3535
name: Win_x64,
3636
os: windows-2019,
37+
q_extra: "",
3738
build: nmake
3839
}
3940
- {
4041
name: Linux_x64,
4142
os: ubuntu-20.04,
43+
q_extra: "",
4244
build: make
4345
}
4446
- {
4547
name: macOS_x64,
46-
os: macos-12,
48+
os: macos-13,
49+
# https://stackoverflow.com/a/77631382
50+
q_extra: "-early QMAKE_DEFAULT_LIBDIRS=$(xcrun -show-sdk-path)/usr/lib",
4751
build: make
4852
}
4953

@@ -64,7 +68,7 @@ jobs:
6468
modules: ${{ matrix.qt.modules}}
6569

6670
- name: Setup project
67-
run: qmake -recursive CONFIG+=debug
71+
run: qmake -recursive CONFIG+=debug ${{ matrix.config.q_extra }}
6872

6973
- name: Build project
7074
run: ${{ matrix.config.build }}

0 commit comments

Comments
 (0)