From 3dc954db25b482074bb8abff5aaa51de002d3b5d Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Wed, 23 Feb 2011 00:15:10 +0000 Subject: Make reusing git repos actually work This code is not pretty, but it works. Currently, Git::Repository is eschewed because it was giving odd errors. --- scripts/capsule.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts') diff --git a/scripts/capsule.sh b/scripts/capsule.sh index 30c3877..9fca79e 100755 --- a/scripts/capsule.sh +++ b/scripts/capsule.sh @@ -20,6 +20,8 @@ function jitterbug_build () { perl Build.PL >> $logfile 2>&1 # ./Build installdeps is not available in older Module::Build's cpanm --installdeps . >> $logfile 2>&1 + # Run this again in case our Build is out of date (suboptimal) + perl Build.PL >> $logfile 2>&1 HARNESS_VERBOSE=1 ./Build test --verbose >> $logfile 2>&1 elif [ -f 'Makefile.PL' ]; then echo "Found Makefile.PL" -- cgit v1.2.3 From db7bb6fd9eae5ea339cf07bc3a769fc11b8087b4 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Wed, 27 Apr 2011 22:23:40 +0000 Subject: Add a more detailed example config file and a custom rakudo build script --- scripts/build_rakudo_and_spectest.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/build_rakudo_and_spectest.sh (limited to 'scripts') diff --git a/scripts/build_rakudo_and_spectest.sh b/scripts/build_rakudo_and_spectest.sh new file mode 100644 index 0000000..423b8b5 --- /dev/null +++ b/scripts/build_rakudo_and_spectest.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# This serves as an example of a custom build script, which builds +# Rakudo Perl 6 and times a spectest run + +make realclean +perl Configure.pl --gen-parrot +make +make t/spec +time make spectest -- cgit v1.2.3