Skip to content

Commit 257b24a

Browse files
authored
fixed #14185 - updated Qt to 6.10.0 in CI (#7880)
1 parent 7ca4556 commit 257b24a

File tree

13 files changed

+14
-13
lines changed

13 files changed

+14
-13
lines changed

.github/workflows/CI-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [windows-2022, windows-2025]
30-
qt_ver: [6.9.1]
30+
qt_ver: [6.10.0]
3131
fail-fast: false
3232

3333
runs-on: ${{ matrix.os }}

.github/workflows/asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222

2323
env:
24-
QT_VERSION: 6.9.1
24+
QT_VERSION: 6.10.0
2525
ASAN_OPTIONS: detect_stack_use_after_return=1
2626
# TODO: figure out why there are cache misses with PCH enabled
2727
CCACHE_SLOPPINESS: pch_defines,time_macros

.github/workflows/clang-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-22.04
2525

2626
env:
27-
QT_VERSION: 6.9.1
27+
QT_VERSION: 6.10.0
2828

2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/iwyu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
image: ${{ matrix.image }}
4040

4141
env:
42-
QT_VERSION: 6.9.1
42+
QT_VERSION: 6.10.0
4343

4444
steps:
4545
- uses: actions/checkout@v4
@@ -196,7 +196,7 @@ jobs:
196196
if: ${{ github.repository_owner == 'danmar' }}
197197

198198
env:
199-
QT_VERSION: 6.9.1
199+
QT_VERSION: 6.10.0
200200

201201
steps:
202202
- uses: actions/checkout@v4

.github/workflows/release-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
# see https://www.pcre.org/original/changelog.txt
2929
PCRE_VERSION: 8.45
30-
QT_VERSION: 6.9.1
30+
QT_VERSION: 6.10.0
3131

3232
steps:
3333
- uses: actions/checkout@v4

.github/workflows/selfcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222

2323
env:
24-
QT_VERSION: 6.9.1
24+
QT_VERSION: 6.10.0
2525

2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/tsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222

2323
env:
24-
QT_VERSION: 6.9.1
24+
QT_VERSION: 6.10.0
2525
TSAN_OPTIONS: halt_on_error=1
2626
# TODO: figure out why there are cache misses with PCH enabled
2727
CCACHE_SLOPPINESS: pch_defines,time_macros

.github/workflows/ubsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222

2323
env:
24-
QT_VERSION: 6.9.1
24+
QT_VERSION: 6.10.0
2525
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1:report_error_type=1
2626
# TODO: figure out why there are cache misses with PCH enabled
2727
CCACHE_SLOPPINESS: pch_defines,time_macros

gui/checkthread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ void CheckThread::runAddonsAndTools(const Settings& settings, const FileSettings
264264
}
265265
f1.close();
266266
}
267-
f1.open(QIODevice::WriteOnly | QIODevice::Text);
267+
(void)f1.open(QIODevice::WriteOnly | QIODevice::Text); // TODO: check result
268268
QTextStream out1(&f1);
269269
out1 << chksum;
270270

gui/fileviewdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void FileViewDialog::loadTextFile(const QString &filename, QTextEdit *edit)
6262
return;
6363
}
6464

65-
file.open(QIODevice::ReadOnly | QIODevice::Text);
65+
(void)file.open(QIODevice::ReadOnly | QIODevice::Text); // TODO: check result
6666
if (!file.isReadable()) {
6767
QString msg(tr("Could not read the file: %1"));
6868
msg = msg.arg(filename);

0 commit comments

Comments
 (0)