forked from marbl/canu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildRelease.sh
71 lines (55 loc) · 2.02 KB
/
buildRelease.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/sh
# Before building a release:
#
# Update copyrights
# Increase version in documentation/source/conf.py
# Increase version in src/canu_version_update.pl
version=$1
if [ x$version = x ] ; then
echo usage: $0 numeric-version
exit
fi
# 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
# 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
echo Make static binaries MacOS
cd ../Darwin-amd64
if [ ! -e ../statifyOSX.py ]; then
curl -L -R -o ../statifyOSX.py https://raw.githubusercontent.com/marbl/canu/master/statifyOSX.py
fi
python ../statifyOSX.py bin lib true true >> ../Darwin-amd64.out 2>&1
python ../statifyOSX.py lib lib true true >> ../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 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 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
echo Compress.
xz -9v canu-$version.Darwin-amd64.tar
xz -9v canu-$version.Linux-amd64.tar
exit