Skip to content

Commit 5e5951a

Browse files
authored
Switch to Qt 6.5 (#23)
1 parent c0deff0 commit 5e5951a

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
- cron: '0 0 * * *' # run at 0 AM UTC
66
workflow_dispatch:
77
inputs:
8-
justification:
9-
description: "Reason for manual run"
10-
required: true
118
dryRun:
129
description: "If true, do not upload files"
1310
default: true
@@ -43,13 +40,11 @@ jobs:
4340
echo "break-system-packages = true" >> "$HOME/Library/Application Support/pip/pip.conf"
4441
4542
- name: Install Qt
46-
uses: jurplel/install-qt-action@v3
43+
uses: jurplel/install-qt-action@v4
4744
with:
4845
modules: qtwebengine qtwebchannel qtpositioning
4946
version: 6.5.*
50-
aqtversion: '==3.1.*'
51-
setup-python: false
52-
47+
5348
- name: Get git hash
5449
id: git_hash
5550
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
@@ -70,8 +65,9 @@ jobs:
7065
- name: Build and create a release package
7166
env:
7267
SC_DEFAULT_APIKEY: ${{ secrets.SC_DEFAULT_APIKEY }}
68+
MACOSX_DEPLOYMENT_TARGET: 10.15
7369
run: |
74-
$Qt6_DIR/bin/qmake LTO=1 simulationcraft.pro QMAKE_APPLE_DEVICE_ARCHS="x86_64 arm64"
70+
qmake LTO=1 simulationcraft.pro QMAKE_APPLE_DEVICE_ARCHS="x86_64 arm64"
7571
make -j $(sysctl -n hw.ncpu) create_release
7672
7773
- name: Smoke Test
@@ -107,8 +103,7 @@ jobs:
107103
architecture: [x64, arm64]
108104
include:
109105
- qt: qt6
110-
qt_version: 6.4.0
111-
qt_dir_variable: QT6_DIR
106+
qt_version: 6.5.*
112107
qt_modules: qtwebengine qtwebchannel qtpositioning
113108
- architecture: x64
114109
cl_architecture: x64
@@ -146,13 +141,11 @@ jobs:
146141
arch: ${{ matrix.cl_architecture }}
147142

148143
- name: Install Qt
149-
uses: jurplel/install-qt-action@v3
144+
uses: jurplel/install-qt-action@v4
150145
with:
151146
modules: ${{ matrix.qt_modules }}
152147
arch: ${{ matrix.qt_arch }}
153-
setup-python: 'false'
154148
version: ${{ matrix.qt_version }}
155-
aqtversion: '==3.0.*'
156149

157150
- name: Create Install and Upload Directory
158151
run: |

0 commit comments

Comments
 (0)