]> git.sesse.net Git - stockfish/blobdiff - appveyor.yml
King proximity tweak for passed pawns
[stockfish] / appveyor.yml
index 1ed692082be78d8852a47821bccaa58b0a89b7fd..21f3bbe326b20d8ba4a79ee1c3ac2b8f5f3d306a 100644 (file)
@@ -7,16 +7,17 @@ branches:
     - appveyor
 
 # Operating system (build VM template)
-os: Visual Studio 2015
+os: Visual Studio 2017
 
 # Build platform, i.e. x86, x64, AnyCPU. This setting is optional.
 platform:
   - x86
   - x64
-  - Any CPU
 
 # build Configuration, i.e. Debug, Release, etc.
-configuration: Debug
+configuration:
+  - Debug
+  - Release
 
 matrix:
   # The build fail immediately once one of the job fails
@@ -50,16 +51,19 @@ before_build:
       $b = git log HEAD | sls "\b[Bb]ench[ :]+[0-9]{7}" | select -first 1
       $bench = $b -match '\D+(\d+)' | % { $matches[1] }
       Write-Host "Reference bench:" $bench
+      $g = "Visual Studio 15 2017"
+      If (${env:PLATFORM} -eq 'x64') { $g = $g + ' Win64' }
+      cmake -G "${g}" .
+      Write-Host "Generated files for: " $g
 
 build_script:
-  - cmake -G "Visual Studio 14 2015 Win64" .
-  - cmake --build .
+  - cmake --build . --config %CONFIGURATION% -- /verbosity:minimal
 
 before_test:
-  - cd src/Debug
+  - cd src/%CONFIGURATION%
+  - stockfish bench 2> out.txt >NUL
   - ps: |
       # Verify bench number
-      ./stockfish bench 2> out.txt 1> null
       $s = (gc "./out.txt" | out-string)
       $r = ($s -match 'Nodes searched \D+(\d+)' | % { $matches[1] })
       Write-Host "Engine bench:" $r