diff --git a/utils/ci/install-from-scratch b/utils/ci/install-from-scratch new file mode 100755 index 0000000..f90ef8d --- /dev/null +++ b/utils/ci/install-from-scratch @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e +set -x + +# cleanup previous build +cleanup() { + vagrant destroy -f + rm -rf tmp/ +} +cleanup +trap cleanup INT EXIT TERM + +# bring VMS up +vagrant up + +# install everything +rake preconfig +rake + +# test +rake test -- libgit2 0.21.2