Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Begin to use local repos.
  • Loading branch information
coke committed May 16, 2014
1 parent c85f012 commit 86b7004
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions bin/doit
@@ -1,4 +1,5 @@
#!/bin/sh

nice -20 perl ./bin/git.p5
nice -20 ./bin/star.sh
git commit -m "today (automated commit)" log
10 changes: 7 additions & 3 deletions bin/star.sh
Expand Up @@ -5,20 +5,22 @@ PATH=/usr/local/bin:$PATH

# save current directory
LOG_DIR=`pwd`/log
REPO_DIR=`pwd`/repos

# start fresh
rm -rf star

git clone git://github.com/rakudo/star.git
git clone $REPO_DIR/star.git
cd star


# get skeleton - don't use the default target, since we are building
# nqp-latest and rakudo-latest. (but keeping the defined version of parrot)

make -f tools/star/Makefile parrot
git clone https://github.com/perl6/nqp.git
git clone $REPO_DIR/nqp.git
(cd nqp && git ls-files > MANIFEST; git describe > VERSION)
git clone https://github.com/rakudo/rakudo.git
git clone $REPO_DIR/rakudo.git
(cd rakudo && git ls-files > MANIFEST; git describe > VERSION)

# setup the modules to pull the latest, not just the declared version)
Expand All @@ -32,6 +34,8 @@ make -f tools/star/Makefile manifest
git submodule foreach git pull origin master 2>&1 | tee submodule.log

# log the versions used on everything
echo "parrot" > $LOG_DIR/version.log
cat parrot/VERSION >> $LOG_DIR/version.log
echo "Rakudo" > $LOG_DIR/version.log
cat rakudo/VERSION >> $LOG_DIR/version.log
echo "NQP" >> $LOG_DIR/version.log
Expand Down

0 comments on commit 86b7004

Please sign in to comment.