From f8adf420a033507d1f41c08b13ca222078ac6893 Mon Sep 17 00:00:00 2001 From: Julian Sikorski Date: Sun, 8 Dec 2024 08:03:48 +0100 Subject: [PATCH] Adjust macOS CI to use three simultaneous jobs As of December 2024, all the used gitlab hosted runners have 7 GB of RAM and 14 GB of storage. macOS runner has 3 CPUs whereas Linux and Windows runners have 2. Since Windows and Linux jobs already use 3 jobs, it should also work for macOS. --- .github/workflows/ci-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index ba56880902e4c..0744d4aac73d0 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -34,7 +34,7 @@ jobs: env: USE_LIBSDL: 1 TOOLS: 1 - run: make -j2 + run: make -j3 - name: Validate run: ./mame -validate - uses: actions/upload-artifact@main