Skip to content

Commit e06a1f0

Browse files
committed
Update Qt versions for appveyor
1 parent f3745b5 commit e06a1f0

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.appveyor.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@ clone_depth: 5
22

33
environment:
44
matrix:
5-
- GENERATOR : "Visual Studio 14 2015 Win64"
6-
QTDIR: C:\Qt\5.6.3\msvc2015_64
5+
- GENERATOR : "Visual Studio 15 2017 Win64"
6+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
7+
QTDIR: C:\Qt\5.11.2\msvc2017_64
78
PLATFORM: x64
8-
- GENERATOR : "Visual Studio 14 2015"
9-
QTDIR: C:\Qt\5.6.3\msvc2015
9+
- GENERATOR : "Visual Studio 15 2017"
10+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
11+
QTDIR: C:\Qt\5.11.2\msvc2015
1012
PLATFORM: Win32
1113
- GENERATOR : "MinGW Makefiles"
12-
QTDIR: C:\Qt\5.6\mingw49_32
14+
QTDIR: C:\Qt\5.11.2\mingw53_32
1315
PLATFORM: x86
1416
CMAKE_CXX_FLAGS_INIT: -DCATCH_CONFIG_NO_CPP11_TO_STRING
1517

16-
image: Visual Studio 2015
18+
#image: Visual Studio 2017
1719

1820
configuration:
1921
- Release
@@ -26,6 +28,7 @@ install:
2628
- set PATH=%QTDIR%\bin;%PATH%
2729
- set Qt5_DIR=%QTDIR%\lib\cmake\Qt5
2830
- set PATH=C:\MinGW\bin;C:\MinGW\msys\1.0;%PATH%
31+
- set PATH=C:\Qt\Tools\mingw530_32;%PATH%
2932
- set PATH=%PATH:C:\Program Files\Git\usr\bin=% # trick to remove sh.exe
3033

3134
before_build:

test/src/test_dragging.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ TEST_CASE("Dragging node changes position", "[gui]")
5959
QTest::mouseMove(view.windowHandle(), vwClickPos);
6060
QTest::mousePress(view.windowHandle(), Qt::LeftButton, Qt::NoModifier, vwClickPos);
6161
QTest::mouseMove(view.windowHandle(), vwDestPos);
62+
QTest::mouseRelease(view.windowHandle(), Qt::LeftButton, Qt::NoModifier, vwDestPos);
6263

6364
QPointF scDelta = ngo.pos() - scPosBefore;
6465
QPoint roundDelta = scDelta.toPoint();

0 commit comments

Comments
 (0)