We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957b18b commit bda9208Copy full SHA for bda9208
1 file changed
.github/workflows/games.yml
@@ -2,7 +2,15 @@ name: Fastchess SPRT Test (Linux)
2
3
on:
4
workflow_dispatch:
5
-
+ inputs:
6
+ rounds:
7
+ description: "Number of SPRT rounds"
8
+ required: false
9
+ default: "6000"
10
+ tc:
11
+ description: "Time control"
12
13
+ default: "60+0.5"
14
permissions:
15
contents: write
16
@@ -92,8 +100,8 @@ jobs:
92
100
-engine cmd=new-engine/engine name=new \
93
101
-engine cmd=base-engine/chess_engine name=base \
94
102
-openings file=UHO_Lichess_4852_v1.epd format=epd order=random \
95
- -each tc=60+0.5 \
96
- -rounds 6000 \
103
+ -each tc=${{ github.event.inputs.tc }} \
104
+ -rounds ${{ github.event.inputs.rounds }} \
97
105
-concurrency $(nproc) \
98
106
-pgnout notation=san nodes=true file=games1.pgn \
99
107
-sprt elo0=0 elo1=2 alpha=0.05 beta=0.05
0 commit comments