Skip to content

Commit

Permalink
Make sure $NUMPROC gets set, so cmake -j $NUMPROC works right
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored and JesseTG committed Mar 1, 2024
1 parent 53766cc commit 3102748
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ libretro-build-linux-x64:
- .core-defs
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-amd64-ubuntu:latest
before_script:
- export NUMPROC=$(($(nproc)/5))
- sudo apt-get update -qy
- sudo apt-get install -qy software-properties-common
- sudo add-apt-repository -y ppa:savoury1/build-tools
Expand Down Expand Up @@ -104,6 +105,7 @@ android-arm64-v8a:
- .libretro-android-cmake-arm64-v8a
- .core-defs
before_script:
- export NUMPROC=$(($(nproc)/5))
- echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list
- apt-get update -qy
- apt-get install -qy cmake/bullseye-backports
Expand All @@ -118,6 +120,7 @@ android-x86_64:
- .libretro-android-cmake-x86_64
- .core-defs
before_script:
- export NUMPROC=$(($(nproc)/5))
- echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list
- apt-get update -qy
- apt-get install -qy cmake/bullseye-backports
Expand Down

0 comments on commit 3102748

Please sign in to comment.