Browse Source

Appveyor: Add Windows Server 2016 to tor's build matrix

Build tor on Windows Server 2012 R2 and Windows Server 2016 using
Appveyor's CI.

Closes ticket 28318.
teor 5 years ago
parent
commit
368aeaadff
2 changed files with 9 additions and 0 deletions
  1. 6 0
      .appveyor.yml
  2. 3 0
      changes/ticket28318

+ 6 - 0
.appveyor.yml

@@ -2,6 +2,12 @@ version: 1.0.{build}
 
 clone_depth: 50
 
+image:
+  # Windows Server 2012 R2
+  - Visual Studio 2015
+  # Windows Server 2016
+  - Visual Studio 2017
+
 environment:
   compiler: mingw
 

+ 3 - 0
changes/ticket28318

@@ -0,0 +1,3 @@
+  o Minor features (Windows, continuous integration):
+    - Build tor on Windows Server 2012 R2 and Windows Server 2016 using
+      Appveyor's CI. Closes ticket 28318.