1 parent 52c7e1b commit 956166eCopy full SHA for 956166e
2 files changed
.github/workflows/setup-windows-latest.sh
@@ -1,6 +1,12 @@
1
#!/bin/sh -e
2
3
+echo Download ...
4
+choco install wget
5
wget https://stockfishchess.org/files/stockfish-11-win.zip
-unzip stockfish-11-win.zip
-mv stockfish-11-win/Windows/stockfish_20011801_x64_bmi2.exe stockfish.exe
6
+
7
+echo Unzip ..
8
+7z e stockfish-11-win.zip stockfish-11-win/Windows/*.exe
9
10
+echo Setup path ...
11
+mv stockfish_20011801_x64_bmi2.exe stockfish.exe
12
pwd >> $GITHUB_PATH
.github/workflows/test.yml
@@ -15,6 +15,7 @@ jobs:
15
with:
16
python-version: ${{ matrix.python-version }}
17
- run: .github/workflows/setup-${{ matrix.os }}.sh
18
+ shell: bash
19
- run: pip install -e .
20
- run: python test.py -v
21
perft:
0 commit comments