File tree Expand file tree Collapse file tree 17 files changed +29
-29
lines changed Expand file tree Collapse file tree 17 files changed +29
-29
lines changed Original file line number Diff line number Diff line change 27
27
strategy :
28
28
matrix :
29
29
os : [windows-2022, windows-2025]
30
- qt_ver : [5.15.2, 6.9.0 ]
30
+ qt_ver : [5.15.2, 6.9.1 ]
31
31
fail-fast : false
32
32
33
33
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change 21
21
runs-on : ubuntu-22.04
22
22
23
23
env :
24
- QT_VERSION : 6.9.0
24
+ QT_VERSION : 6.9.1
25
25
ASAN_OPTIONS : detect_stack_use_after_return=1
26
26
# TODO: figure out why there are cache misses with PCH enabled
27
27
CCACHE_SLOPPINESS : pch_defines,time_macros
Original file line number Diff line number Diff line change 24
24
runs-on : ubuntu-22.04
25
25
26
26
env :
27
- QT_VERSION : 6.9.0
27
+ QT_VERSION : 6.9.1
28
28
29
29
steps :
30
30
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 39
39
image : ${{ matrix.image }}
40
40
41
41
env :
42
- QT_VERSION : 6.9.0
42
+ QT_VERSION : 6.9.1
43
43
44
44
steps :
45
45
- uses : actions/checkout@v4
@@ -186,7 +186,7 @@ jobs:
186
186
if : ${{ github.repository_owner == 'danmar' }}
187
187
188
188
env :
189
- QT_VERSION : 6.9.0
189
+ QT_VERSION : 6.9.1
190
190
191
191
steps :
192
192
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 27
27
env :
28
28
# see https://www.pcre.org/original/changelog.txt
29
29
PCRE_VERSION : 8.45
30
- QT_VERSION : 6.9.0
30
+ QT_VERSION : 6.9.1
31
31
32
32
steps :
33
33
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 21
21
runs-on : ubuntu-22.04
22
22
23
23
env :
24
- QT_VERSION : 6.9.0
24
+ QT_VERSION : 6.9.1
25
25
26
26
steps :
27
27
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 21
21
runs-on : ubuntu-22.04
22
22
23
23
env :
24
- QT_VERSION : 6.9.0
24
+ QT_VERSION : 6.9.1
25
25
TSAN_OPTIONS : halt_on_error=1
26
26
# TODO: figure out why there are cache misses with PCH enabled
27
27
CCACHE_SLOPPINESS : pch_defines,time_macros
Original file line number Diff line number Diff line change 21
21
runs-on : ubuntu-22.04
22
22
23
23
env :
24
- QT_VERSION : 6.9.0
24
+ QT_VERSION : 6.9.1
25
25
UBSAN_OPTIONS : print_stacktrace=1:halt_on_error=1:report_error_type=1
26
26
# TODO: figure out why there are cache misses with PCH enabled
27
27
CCACHE_SLOPPINESS : pch_defines,time_macros
Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ CheckOptions:
75
75
# caused by Qt generated moc code - see https://bugreports.qt.io/browse/QTBUG-100915
76
76
target_compile_options_safe (cppcheck-gui -Wno-redundant-parens )
77
77
endif ()
78
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
79
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
78
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
79
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
80
80
target_compile_options_safe (cppcheck-gui -Wno-ctad-maybe-unsupported )
81
81
endif ()
82
82
endif ()
83
- if (QT_VERSION VERSION_GREATER_EQUAL "6.9.1 " )
83
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.2 " )
84
84
# QBrush fails to compile before 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-134038
85
- # QtCharts/qxyseries.h fails to compile in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135637
86
- target_compile_definitions (cppcheck-gui PRIVATE -DQT_NO_QPAIR )
85
+ # QtCharts/qxyseries.h fails to compile in 6.9.0 and 6.9.1 - see https://bugreports.qt.io/browse/QTBUG-135637
86
+ # target_compile_definitions(cppcheck-gui PRIVATE -DQT_NO_QPAIR)
87
87
endif ()
88
88
target_compile_definitions (cppcheck-gui PRIVATE -DQT_NO_FOREACH )
89
89
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
17
17
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
18
18
target_compile_options_safe (test -cppchecklibrarydata -Wno-extra-semi-stmt )
19
19
endif ()
20
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
21
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
20
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
21
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
22
22
target_compile_options_safe (test -cppchecklibrarydata -Wno-ctad-maybe-unsupported )
23
23
endif ()
24
24
endif ()
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
20
20
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
21
21
target_compile_options_safe (test -filelist -Wno-extra-semi-stmt )
22
22
endif ()
23
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
24
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
23
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
24
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
25
25
target_compile_options_safe (test -filelist -Wno-ctad-maybe-unsupported )
26
26
endif ()
27
27
endif ()
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
15
15
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
16
16
target_compile_options_safe (test -projectfile -Wno-extra-semi-stmt )
17
17
endif ()
18
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
19
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
18
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
19
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
20
20
target_compile_options_safe (test -projectfile -Wno-ctad-maybe-unsupported )
21
21
endif ()
22
22
endif ()
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
43
43
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
44
44
target_compile_options_safe (test -resultstree -Wno-extra-semi-stmt )
45
45
endif ()
46
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
47
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
46
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
47
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
48
48
target_compile_options_safe (test -resultstree -Wno-ctad-maybe-unsupported )
49
49
endif ()
50
50
# caused by mocks
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
15
15
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
16
16
target_compile_options_safe (test -translationhandler -Wno-extra-semi-stmt )
17
17
endif ()
18
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
19
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
18
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
19
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
20
20
target_compile_options_safe (test -translationhandler -Wno-ctad-maybe-unsupported )
21
21
endif ()
22
22
endif ()
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
33
33
# Q_UNUSED() in generated code - see https://bugreports.qt.io/browse/QTBUG-82978
34
34
target_compile_options_safe (test -xmlreportv2 -Wno-extra-semi-stmt )
35
35
endif ()
36
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
37
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
36
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
37
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
38
38
target_compile_options_safe (test -xmlreportv2 -Wno-ctad-maybe-unsupported )
39
39
endif ()
40
40
endif ()
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Deprecations:
19
19
-
20
20
21
21
Other:
22
- - Updated Qt to 6.9.0 (official Windows release only).
22
+ - Updated Qt to 6.9.1 (official Windows release only).
23
23
- added CMake target `run-clang-tidy-csa` to run Clang Static Analyzer
24
24
- added CMake option `ENABLE_CSA_ALPHA` to enable the Clang Static Analyzer alpha checkers
25
25
- Updated TinyXML-2 to v11.0.0
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ CheckOptions:
39
39
# QBrush fails to compile before 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-134038
40
40
target_compile_definitions (triage PRIVATE -DQT_NO_QPAIR )
41
41
endif ()
42
- if (QT_VERSION VERSION_EQUAL "6.9.0" )
43
- # caused by Qt generated moc code in 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
42
+ if (QT_VERSION VERSION_GREATER_EQUAL "6.9.0" )
43
+ # caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
44
44
target_compile_options_safe (triage -Wno-ctad-maybe-unsupported )
45
45
endif ()
46
46
target_compile_definitions (triage PRIVATE -DQT_NO_FOREACH )
You can’t perform that action at this time.
0 commit comments