Skip to content

Commit 53cb216

Browse files
committed
Restrict MSVC compiler to 2022
Otherwise there is a compile error regarding usage of stdext in Qt5, which was removed in MSVC 2026
1 parent 3970790 commit 53cb216

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: ['ubuntu', 'windows']
2323
qt-version: [ '5.12.*', '5.15.*', '6.11.*' ]
2424
python-version: [ '3.12' ]
25-
runs-on: ${{ matrix.os }}-latest
25+
runs-on: ${{ matrix.os == 'windows' && 'windows-2022' || 'ubuntu-latest' }}
2626
steps:
2727

2828
- name: Install MSVC

0 commit comments

Comments
 (0)