8000 Merge pull request #5 from github/add-script-cibuild · github/ruby@1f04870 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1f04870

Browse files
author
Charlie Somerville
committed
Merge pull request #5 from github/add-script-cibuild
Add script/cibuild
2 parents d355236 + 9fca24f commit 1f04870

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

script/cibuild

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash -xe
2+
3+
if [ -z "$CORES" ]; then
4+
CORES=64
5+
fi
6+
7+
git clean -f -x
8+
autoconf
9+
./configure --disable-install-doc
10+
make -j $CORES
11+
make TESTS="-j $CORES" test-all

0 commit comments

Comments
 (0)
0