[RfC] Make CI faster

We can straightforwardly parallelize the `check_universal.sh` script, which takes quite a bit of time for the x86 builds.

closes https://github.com/official-stockfish/Stockfish/pull/6919

No functional change
This commit is contained in:
anematode
2026-06-25 13:03:07 +02:00
committed by Joost VandeVondele
parent 74a0a73715
commit 31e89adf70
2 changed files with 36 additions and 14 deletions
+7 -1
View File
@@ -165,7 +165,13 @@ jobs:
- name: Download required macOS packages
if: runner.os == 'macOS'
run: brew install coreutils gcc@11
run: brew install coreutils
- name: Install GCC on macOS
if: runner.os == 'macOS' && matrix.config.comp == 'gcc'
run: |
brew install gcc@11 || true
g++-11 --version
- name: Setup msys and install required packages
if: runner.os == 'Windows'