Skip to content

Commit

Permalink
Try to fix VS2015 appveyor builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
egorpugin committed May 29, 2018
1 parent 0c50ae3 commit 8d3f811
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
image:
- Visual Studio 2015
- Visual Studio 2017
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
vs_ver: 14 2015
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
vs_ver: 15 2017

platform:
- Win32
Expand All @@ -17,8 +20,8 @@ install:
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%

before_build:
- if %platform%==Win32 set generator=Visual Studio 15 2017
- if %platform%==Win64 set generator=Visual Studio 15 2017 Win64
- if %platform%==Win32 set generator=Visual Studio %vs_ver%
- if %platform%==Win64 set generator=Visual Studio %vs_ver% Win64
- if %platform%==Win32 set vcplatform=Win32
- if %platform%==Win64 set vcplatform=x64

Expand Down

5 comments on commit 8d3f811

@Shreeshrii
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@egorpugin Appveyor seems to be running against time limit when building all 4 versions and hence shows as failed.

Suggestion: build 2015 and 2017 for alternate builds (checking build numbers for odd/even)

@egorpugin
Copy link
Contributor Author

@egorpugin egorpugin commented on 8d3f811 May 30, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Shreeshrii
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had seen an earlier one:

https://ci.appveyor.com/project/zdenop/tesseract/build/master.1645/job/8xcqhvbsvtekvvp9/messages

Build execution time has reached the maximum allowed time for your plan (60 minutes).

@egorpugin
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cppan is stuck there.

@Shreeshrii
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok. I see in history now that it usually builds faster. Thanks!

Please sign in to comment.