Skip to content

Commit

Permalink
Operate off the release tarball, not git.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Apr 20, 2017
1 parent f75deef commit 7e2da52
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions buildRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,49 @@ if [ x$version = x ] ; then
exit
fi

git clone [email protected]:marbl/canu.git

mv canu canu-$version
# From the tarball

if [ ! -e canu-$version.tar.gz ] ; then
echo Fetch.
curl -L -R -o canu-$version.tar.gz https://github.com/marbl/canu/archive/v$version.tar.gz
fi
if [ ! -d canu-$versioin ] ; then
echo Unpack.
gzip -dc canu-$version.tar.gz | tar -xf -
fi
cd canu-$version
git tag v$version

# From the repo

#git clone [email protected]:marbl/canu.git
#mv canu canu-$version
#cd canu-$version
#git tag v$version
#git checkout v$version

echo Build MacOS.
cd src
gmake -j 12 > ../Darwin-amd64.out 2>&1
cd ../..

rm -f canu-$version/linux.sh

echo >> canu-$version/linux.sh \#\!/bin/bash
echo >> canu-$version/linux.sh yum install -y git
#echo >> canu-$version/linux.sh yum install -y git
echo >> canu-$version/linux.sh cd /build/canu-$version/src
echo >> canu-$version/linux.sh gmake -j 12 \> ../Linux-amd64.out 2\>\&1
echo >> canu-$version/linux.sh cd ../..
echo >> canu-$version/linux.sh tar -cf canu-$version/README* canu-$version.Darwin-amd64.tar canu-$version/Darwin-amd64
echo >> canu-$version/linux.sh tar -cf canu-$version/README* canu-$version.Linux-amd64.tar canu-$version/Linux-amd64
echo >> canu-$version/linux.sh rm -rf canu-$version/Darwin-amd64/obj
echo >> canu-$version/linux.sh rm -rf canu-$version/Linux-amd64/obj
echo >> canu-$version/linux.sh tar -cf canu-$version.Darwin-amd64.tar canu-$version/README* canu-$version/Darwin-amd64
echo >> canu-$version/linux.sh tar -cf canu-$version.Linux-amd64.tar canu-$version/README* canu-$version/Linux-amd64

chmod 755 canu-$version/linux.sh

echo Build Linux and make tarballs.
docker run -v `pwd`:/build -t -i --rm phusion/holy-build-box-64:latest /hbb_exe/activate-exec bash /build/canu-$version/linux.sh

rm -rf canu-$version/*-amd64/obj

echo Compress.
xz -9v canu-$version.Darwin-amd64.tar
xz -9v canu-$version.Linux-amd64.tar

Expand Down

0 comments on commit 7e2da52

Please sign in to comment.