Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Truffle] Updated builder version, and don't build the -master variants.
  • Loading branch information
chrisseaton committed Dec 20, 2014
1 parent 3f2c760 commit 54a3ef7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tool/build-graal-bundles.sh
Expand Up @@ -52,16 +52,18 @@ function pack {

tar -zxf $buildname || exit $?
chmod -R +w graalvm-jdk1.8.0

cp -r graalvm-jdk1.8.0 jruby-$version || exit $?
rm -rf jruby-$version/graalvm-jdk1.8.0/src.zip jruby-$version/graalvm-jdk1.8.0/demo jruby-$version/graalvm-jdk1.8.0/include jruby-$version/graalvm-jdk1.8.0/sample || exit $?
targetname=jruby-dist-$version+graal-$1-x86_64-bin.tar.gz
tar -zcf $targetname jruby-$version || exit $?
shasum -a 1 $targetname > $targetname.sha1 || exit $?
cp -r jruby-$version jruby-master || exit $?
targetname=jruby-dist-master+graal-$1-x86_64-bin.tar.gz
tar -zcf $targetname jruby-master || exit $?
shasum -a 1 $targetname > $targetname.sha1 || exit $?

#cp -r jruby-$version jruby-master || exit $?
#targetname=jruby-dist-master+graal-$1-x86_64-bin.tar.gz
#tar -zcf $targetname jruby-master || exit $?
#shasum -a 1 $targetname > $targetname.sha1 || exit $?
}

pack "linux" "b132" "0.5"
pack "macosx" "b132" "0.5"
pack "linux" "b132" "0.6"
pack "macosx" "b132" "0.6"

0 comments on commit 54a3ef7

Please sign in to comment.