Skip to content

Commit

Permalink
Merge remote-tracking branch 'tor-github/pr/733' into maint-0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Mar 8, 2019
2 parents d6f77b9 + 78bfe73 commit ffd7207
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ clone_depth: 50
# But we compile using MinGW, not Visual Studio.
# We use these images because they have different Windows versions.
image:
# Windows Server 2012 R2
- Visual Studio 2015
# Windows Server 2016
- Visual Studio 2017
# Windows Server 2012 R2
- Visual Studio 2015

environment:
compiler: mingw
Expand All @@ -25,6 +25,25 @@ environment:
# hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8
hardening: --disable-gcc-hardening

matrix:
# Don't keep building failing jobs
fast_finish: true
# Skip the 32-bit Windows Server 2016 job, and the 64-bit Windows Server
# 2012 R2 job, to speed up the build.
# The environment variables must be listed without the 'environment' tag.
exclude:
- image: Visual Studio 2017
target: i686-w64-mingw32
compiler_path: mingw32
mingw_prefix: mingw-w64-i686
hardening:
- image: Visual Studio 2015
target: x86_64-w64-mingw32
compiler_path: mingw64
mingw_prefix: mingw-w64-x86_64
# hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8
hardening: --disable-gcc-hardening

install:
- ps: >-
Function Execute-Command ($commandPath)
Expand Down
6 changes: 6 additions & 0 deletions changes/bug29601
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
o Minor bugfixes (Windows, CI):
- Skip the Appveyor 32-bit Windows Server 2016 job, and 64-bit Windows
Server 2012 R2 job. The remaining 2 jobs still provide coverage of
64/32-bit, and Windows Server 2016/2012 R2. Also set fast_finish, so
failed jobs terminate the build immediately.
Fixes bug 29601; bugfix on 0.3.5.4-alpha.

0 comments on commit ffd7207

Please sign in to comment.