Skip to content

Commit 6f078e5

Browse files
committed
Some fixes / tweaks for Qt 6.8.1 and 6.9.0
1 parent 49be473 commit 6f078e5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ jobs:
203203
- { qt: '6.5.3', cc: gcc }
204204
- { qt: '6.6.3', cc: gcc }
205205
- { qt: '6.7.3', cc: gcc }
206-
- { qt: '6.8.0', cc: gcc } # \todo See if this is still needed.
207-
- { qt: '6.9.0', cc: gcc } # \todo See if this is still needed.
206+
- { qt: '6.8.1', cc: gcc }
207+
# { qt: '6.9.0', cc: gcc } # \todo See if this is still needed.
208208
steps:
209209
- uses: actions/checkout@v4
210210
- name: Install lcov
@@ -367,9 +367,10 @@ jobs:
367367
- { arch: arm64, qt: '5.13.2' }
368368
- { arch: arm64, qt: '5.14.2' }
369369
- { arch: arm64, qt: '5.15.2' }
370-
# Also exclude arm64 for Qt 6.8 for now, as Qt 6.8 is moving to native-only (not cross-compiling) arm64 on
370+
# Also exclude arm64 for Qt 6.8+ for now, as Qt 6.8 is moving to native-only (not cross-compiling) arm64 on
371371
# Windows (https://www.qt.io/blog/qt-for-windows-on-arm-may21-update) and there are not compatible runners.
372372
- { arch: arm64, qt: '6.8.1' } # \todo Qt 6.8.1 might have restored cross-compilation.
373+
- { arch: arm64, qt: '6.9.0' } # \todo Qt 6.9.0 might have restored cross-compilation.
373374
# Exclude MinGW (including LLVM) builds for arm64, since Qt does not provide those binaries yet.
374375
- { arch: arm64, toolchain: llvm }
375376
- { arch: arm64, toolchain: mingw }

test/unit/cli/testloggerfetchcommand.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void TestLoggerFetchCommand::metadataRead()
3434
1000, 1234, (quint32)QDateTime::currentSecsSinceEpoch()
3535
};
3636
LoggerFetchCommand command(this);
37-
QTest::ignoreMessage(QtInfoMsg, "Fetching 1,234 logger sample/s...");
37+
QTest::ignoreMessage(QtInfoMsg, QRegularExpression(QStringLiteral(R"(Fetching 1,?234 logger sample/s\.{3})"));
3838
command.metadataRead(metadata);
3939
QCOMPARE(command.metadata.status, metadata.status);
4040
QCOMPARE(command.metadata.scale, metadata.scale);

0 commit comments

Comments
 (0)