Skip to content

Commit

Permalink
limit concurrency to 2 due to RAM limits
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Apr 12, 2024
1 parent ae8b13a commit 5563c47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@ repos:
rev: v6.2.1
hooks:
- id: beautysh

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.1
hooks:
- id: check-github-actions
ci:
autoupdate_schedule: quarterly
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fi
export CMAKE_OSX_DEPLOYMENT_TARGET="${MACOSX_DEPLOYMENT_TARGET}"
export CMAKE_INSTALL_PREFIX=${INSTALL_PREFIX}
export CMAKE_GENERATOR="Ninja"
export MAKE_OPTIONS="-v"
export MAKE_OPTIONS="-v -j2"
# disable gcc 10 pstl TBB backend as it uses the old TBB API
export CMAKE_CXX_FLAGS='"-fvisibility=hidden -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -DNDEBUG"'
export BUILD_SHARED_LIBS=OFF
Expand Down

0 comments on commit 5563c47

Please sign in to comment.