From 9597ad8cabbacf8892c5e8ac97e6c53c61fc4f52 Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Tue, 5 Jun 2018 18:05:58 +0200 Subject: [PATCH] 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. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2