8000 only set CORES if it doesn't exist · github/ruby@644247a · GitHub
[go: up one dir, main page]

Skip to content

Commit 644247a

Browse files
author
Charlie Somerville
committed
only set CORES if it doesn't exist
1 parent c4249b5 commit 644247a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

script/cibuild

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash -xe
2-
CORES=64
2+
3+
if [ -z "$CORES" ]; then
4+
CORES=64
5+
fi
36

47
autoconf
58
./configure --disable-install-doc

0 commit comments

Comments
 (0)
0