Increase ulimit on macos

The test suite is now running out of file descriptors, because of
macos's default tiny limit.
This commit is contained in:
Jason Rhinelander 2022-08-05 10:30:01 -03:00
parent edcde9246a
commit 3a3ffa7d23
No known key found for this signature in database
GPG Key ID: C4992CE7A88D4262
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ local full_llvm(version) = debian_pipeline(
commands: [
'mkdir build',
'cd build',
'ulimit -n 1024', // Because macOS has a stupid tiny default ulimit
'cmake .. -G Ninja -DCMAKE_CXX_FLAGS=-fcolor-diagnostics -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache',
'ninja -v',
'./tests/tests --use-colour yes',