Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* fix issue with moarvm git submodules
* re-enable parrot runs..
  • Loading branch information
coke committed May 28, 2014
1 parent 213d2ad commit 9d79992
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/star.sh
Expand Up @@ -10,18 +10,20 @@ REPO_DIR=`pwd`/repos

# start fresh

for impl in MoarVM; do
for impl in MoarVM parrot; do
cd $TOP_DIR;
rm -rf star-$impl
git clone $REPO_DIR/star.git star-$impl
cd star-$impl

# get the latest everything
# get the latest everything... except submodules of VMs

git clone $REPO_DIR/parrot.git
(cd parrot && git describe --tags > VERSION_GIT)
git clone $REPO_DIR/MoarVM.git
(cd MoarVM && git submodule init && git submodule update)
(cd MoarVM && git ls-files > MANIFEST; git describe > VERSION)
(cd MoarVM && for dir in $(git submodule status | awk '{print $2}') ; do export PDIR=$dir; (cd $dir && git ls-files | perl -ne 'print "$ENV{PDIR}/$_"') ; done >> MANIFEST)
git clone $REPO_DIR/nqp.git
(cd nqp && git ls-files > MANIFEST; git describe > VERSION)
git clone $REPO_DIR/rakudo.git
Expand Down

0 comments on commit 9d79992

Please sign in to comment.