Skip to content
Snippets Groups Projects
Commit 9066f726 authored by Thorsten Wißmann's avatar Thorsten Wißmann
Browse files

Add script for static tarball creation

parent b03cc745
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
::() { echo ":: $*" ; "$@" ; }
die() { echo "$*" ; exit 1 ; }
[ -d .git ] || die "$0 only works in the git-repository!"
dir=cool-$(uname -m)-$(date +%Y-%m-%d)
:: mkdir -p $dir
:: pushd $dir
:: git --git-dir=.git pull || :: git clone .. .
make clean
oasis setup
ocaml setup.ml -configure --enable-static
ocaml setup.ml -build
files=(
)
binary() {
files+=( "$1" )
cp $1.native $1
}
binary coalg
binary cool-testsuite
binary coalgcompare
binary cool-owl
files+=(
*.sh
BUGS
INSTALL
VERSION
_oasis
benchmarks/
testbench/
cool2tatl
setup.ml
src/
)
cat >VERSION <<EOF
COOL Static Linux-Binaries
==========================
This version of COOL was...
- build on $(date).
- build for the architecture $(uname -m).
Last commit
-----------
$(git log HEAD~1..)
EOF
popd
zip -r "$dir.zip" $(printf "$dir/%s\n" "${files[@]}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment