From: Joost VandeVondele Date: Tue, 5 Jun 2018 16:05:58 +0000 (+0200) Subject: Stabilize AppVeyor CI X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=9597ad8cabbacf8892c5e8ac97e6c53c61fc4f52;ds=sidebyside Stabilize AppVeyor CI After a helpful suggestion from AppVeyor support staff, moving the Stockfish execution from ps to cmd seems to work. Alternative to PR #1624 tested in PR #1637. No functional change. --- diff --git a/appveyor.yml b/appveyor.yml index c711dd6c..c81869b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -61,9 +61,9 @@ build_script: before_test: - 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