1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-16 03:44:56 +02:00

Github Actions: use Qt 5.11.0 on windows.

qt < 5.11 has a bug in qCountLeadingZeroBits function (QtCore/qalgorithms.h).
This function is marked constexpr but returns a non-const value.

MSVC compilers will pick this up as an C3615 error.
See https://docs.microsoft.com/en-us/cpp/error-messages/compiler-errors-2/compiler-error-c3615
This commit is contained in:
Henrik Hautakoski 2020-04-25 21:47:10 +02:00
parent e19982acee
commit beeba58cee
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ jobs:
if: startsWith(matrix.build, 'gui') && runner.os != 'Linux'
uses: jurplel/install-qt-action@v2
with:
version: '5.9'
version: '5.11.0'
- name: Configure
shell: bash

View file

@ -63,7 +63,7 @@ jobs:
uses: jurplel/install-qt-action@v2
with:
arch: ${{ matrix.qt-arch }}
version: '5.9'
version: '5.11.0'
- name: Configure
run: cmake -A ${{matrix.arch}} -DCOMPONENT_GUI=ON -DCOMPONENT_CLI=ON -D CMAKE_BUILD_TYPE=Release -D CPACK_GENERATOR=NSIS -S . -B build