Skip to content

Commit

Permalink
sf17-80 -> sf17-79
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Sep 7, 2024
1 parent 2c07df0 commit 1e520ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Edit the Stockfish sources freely. But to contribute your edits, use a patch fil
- big nnue: [nn-b1a57edbea57.nnue](https://tests.stockfishchess.org/nns?network_name=nn-b1a57edbea57)
- small nnue: [nn-baff1ede1f90.nnue](https://tests.stockfishchess.org/nns?network_name=nn-baff1ede1f90)

### sf17-80 (Official Stockfish 17 release)
### sf17-79 (Official Stockfish 17 release)
- repo: https://github.com/official-stockfish/Stockfish
- commit: [e0bfc4b](https://github.com/official-stockfish/Stockfish/commit/e0bfc4b)
- tag: sf_17
Expand Down
8 changes: 4 additions & 4 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
# - sfhce: VERSION_0
# - fsf14, sf16-7, sf16-40: VERSION_1
# - sf16.1: VERSION_2
# - sf17: VERSION_3
# - sf17-79: VERSION_3

targets = {
"fsf14": {"url": fairy_stockfish_repo, "commit": "a621470", "cxx_flags": "", "version": "version_1"},
"sf16-7": {"url": stockfish_repo, "commit": "68e1e9b", "cxx_flags": "", "version": "version_1"},
"sf16-40": {"url": stockfish_repo, "commit": "68e1e9b", "cxx_flags": "", "version": "version_1"},
"sf161-70": {"url": stockfish_repo, "commit": "e67cc97", "cxx_flags": "", "version": "version_2"}, # 16.1
"sf17-80": {"url": stockfish_repo, "commit": "e0bfc4b", "cxx_flags": "", "version": "version_3"}, # 17
"sf17-79": {"url": stockfish_repo, "commit": "e0bfc4b", "cxx_flags": "", "version": "version_3"}, # 17
"sfhce": {"url": stockfish_repo, "commit": "9587eee", "version": "version_0"}, # sf classical
}

Expand Down Expand Up @@ -78,13 +78,13 @@ def main():
parser.add_argument(
"target",
nargs="*",
help=f"{', '.join(list(targets.keys()))}, clean, or all (default: 'sf17-80')",
help=f"{', '.join(list(targets.keys()))}, clean, or all (default: 'sf17-79')",
)

args = parser.parse_args()
arg_targets = list(args.target)
if len(arg_targets) == 0:
arg_targets = ["sf17-80"]
arg_targets = ["sf17-79"]

if "clean" in arg_targets:
clean()
Expand Down
File renamed without changes.

0 comments on commit 1e520ef

Please sign in to comment.