Update CI to use 4 CPUs on Linux and Windows.

This commit is contained in:
Yamagi 2025-02-09 10:55:51 +01:00
parent 6a2d5125f6
commit 787de54da5
2 changed files with 4 additions and 4 deletions

View file

@ -26,8 +26,8 @@ jobs:
uses: actions/checkout@v4
- name: Build
run: |
# Public runners come with 2 CPUs.
make -j2
# Public runners come with 4 CPUs.
make -j4
- name: Create testbuild package
run: |
# Create release directory tree

View file

@ -36,8 +36,8 @@ jobs:
- name: Build
shell: msys2 {0}
run: |
# Public runners come with 2 CPUs.
make -j2
# Public runners come with 4 CPUs.
make -j4
- name: Create testbuild package
shell: msys2 {0}
run: |