Duke's utils
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
543 B

#!/bin/sh
# Update the repo we are hopefully in
# TODO: bail out if we are in a git repo, or if there are modifiications
git pull --rebase
for np in `dirname $0`/new_parrot*; do
# First compile with gcc
echo $np
# Always run configure tests
$np --test
make smoke
# Now with g++ , including configure tests
echo "$np --cc=g++ --link=g++ --ld=g++"
$np --cc=g++ --link=g++ --ld=g++
make smoke
# This will be run in a loop, so we sleep so we don't flood Smolder
echo "SLEEPING"
sleep 600
done