Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
script/cibuild for github/ruby
  • Loading branch information
Charlie Somerville committed Aug 9, 2013
commit 36bd05dbc4a8fc67dbc59dd860dee904925bdb56
11 changes: 11 additions & 0 deletions script/cibuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash -xe

if [ -z "$CORES" ]; then
CORES=64
fi

git clean -f -x
autoconf
./configure --disable-install-doc
make -j $CORES
make TESTS="-j $CORES" test-all