mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-25 11:36:51 +08:00
Github Actions allows us to use up to 20 workers. This way we can launch multiple different checks at the same time and optimize the overall time the CI takes a bit. closes https://github.com/official-stockfish/Stockfish/pull/4223 No functional change
22 lines
457 B
YAML
22 lines
457 B
YAML
name: Stockfish
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- tools
|
|
- github_ci
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- tools
|
|
jobs:
|
|
Sanitizers:
|
|
uses: ./.github/workflows/stockfish_sanitizers.yml
|
|
Tests:
|
|
uses: ./.github/workflows/stockfish_test.yml
|
|
Compiles:
|
|
uses: ./.github/workflows/stockfish_compile_test.yml
|
|
Binaries:
|
|
if: github.ref == 'refs/heads/master'
|
|
uses: ./.github/workflows/stockfish_binaries.yml
|