Skip to content

Commit

Permalink
Fix bench and perft wrong syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Aug 22, 2023
1 parent 8743436 commit 3977e0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ jobs:
run: dotnet build -c Release

- name: Run perft ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }}
run: dotnet run -c Release --no-build "bench"'
run: dotnet run -c Release --no-build "bench"
working-directory: ./src/Lynx.Cli
4 changes: 2 additions & 2 deletions .github/workflows/perft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: dotnet build -c Release

- name: Run perft ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }}
run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "perft ${{ github.event.inputs.depth }}" "quit"'
run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "perft ${{ github.event.inputs.depth }}" "quit"
working-directory: ./src/Lynx.Cli

divide:
Expand Down Expand Up @@ -83,5 +83,5 @@ jobs:
run: dotnet build -c Release

- name: Run divide ${{ github.event.inputs.depth }} on ${{ github.event.inputs.fen }}
run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "divide ${{ github.event.inputs.depth }}" "quit"'
run: dotnet run -c Release --no-build "position fen ${{ github.event.inputs.fen }}" "divide ${{ github.event.inputs.depth }}" "quit"
working-directory: ./src/Lynx.Cli

0 comments on commit 3977e0b

Please sign in to comment.