forked from GaloisInc/saw-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stage.sh
executable file
·77 lines (68 loc) · 2.29 KB
/
stage.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
72
73
74
75
76
77
#!/bin/bash
set -e
while getopts "cr" opt; do
case $opt in
c)
# Remove './tmp', including all previous releases, before staging.
clean="true"
;;
r)
release="true"
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
DATE=`date +%F`
# Get 'Version' from the .cabal file.
VERSION=`grep Version saw-script.cabal | awk '{print $2}'`
# Warn if 'SYSTEM_DESC' is not defined. The 'SYSTEM_DESC' env var is
# defined as part of the Jenkins node configuration on the Linux
# nodes.
if [ -n "$release" ] ; then
RELEASE=saw-${VERSION}-${SYSTEM_DESC:-SYSTEM_DESC-IS-NOT-DEFINED}
else
RELEASE=saw-${VERSION}-${DATE}-${SYSTEM_DESC:-SYSTEM_DESC-IS-NOT-DEFINED}
fi
TARGET=tmp/release/$RELEASE
if [ -n "$clean" ]; then
rm -rf ./tmp/release
fi
mkdir -p ${TARGET}/bin
mkdir -p ${TARGET}/doc
mkdir -p ${TARGET}/examples
mkdir -p ${TARGET}/include
mkdir -p ${TARGET}/lib
echo Staging ...
# Workaround bug which prevents using `stack path --local-install-root`:
# https://github.com/commercialhaskell/stack/issues/604.
BIN=$(stack path | sed -ne 's/local-install-root: //p')/bin
if [ "${OS}" != "Windows_NT" ]; then
strip "$BIN"/*
fi
cp deps/abcBridge/abc-build/copyright.txt ${TARGET}/ABC_LICENSE
cp LICENSE ${TARGET}/LICENSE
cp README.md ${TARGET}/README.md
cp "$BIN"/cryptol ${TARGET}/bin
cp "$BIN"/saw ${TARGET}/bin
cp doc/extcore.md ${TARGET}/doc
cp doc/tutorial/sawScriptTutorial.pdf ${TARGET}/doc/tutorial.pdf
cp doc/manual/manual.pdf ${TARGET}/doc/manual.pdf
cp -r doc/tutorial/code ${TARGET}/doc
cp deps/jvm-verifier/support/galois.jar ${TARGET}/lib
cp -r deps/cryptol/lib/* ${TARGET}/lib
cp -r examples/* ${TARGET}/examples
cd tmp/release
if [ "${OS}" == "Windows_NT" ]; then
rm -f ${RELEASE}.zip
7za a -tzip ${RELEASE}.zip -r ${RELEASE}
echo
echo "Release package is `pwd`/${RELEASE}.zip"
else
rm -f ${RELEASE}.tar.gz
tar cvfz ${RELEASE}.tar.gz ${RELEASE}
echo
echo "Release package is `pwd`/${RELEASE}.tar.gz"
fi