-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·64 lines (53 loc) · 1.6 KB
/
build.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
#!/usr/bin/env bash
set -o history -o histexpand
wait_for_docker() {
while [ -z ${docker_running+x} ]; do
sleep 1
{
echo "Checking for running docker..."
docker ps -q && docker_running=1
} || {
echo "Docker is not running. Please start docker on your computer"
}
done
}
native() {
echo "Building using docker graal"
if [ -z "$(command -v docker)" ]; then
echo "\"docker\" not found, please install docker"
exit 1
fi
wait_for_docker
docker run -it -v "$(pwd):/project" --rm richarddavison/graalvm-aws-linux2 --static "$@"
}
native_arguments=("$@")
index=$(echo "${native_arguments[@]/--args//}" | cut -d/ -f1 | wc -w | tr -d ' ')
native_arguments=("${native_arguments[@]:$((index + 1))}")
if [[ $1 == "local" ]]; then
if [ -z ${GRAALVM_HOME+x} ]; then
echo -e "evirontment variable GRAALVM_HOME is not set, try setting suing:\nexport GRAALVM_HOME=$HOME/Library/Graal/Contents/Home"
exit 1
fi
unset -f native
native() {
echo "Building using local graal"
export JAVA_HOME=${GRAALVM_HOME}
export PATH=${JAVA_HOME}/bin:$PATH
if [ -z "$(command -v native-image)" ]; then
echo "\"native-image\" not found, installning native-image"
gu install native-image
fi
native-image "$@"
}
fi
# shellcheck disable=SC2012
native -jar "build/libs/$(ls -Slh ./build/libs | sed -n 2p | tr -s ' ' | cut -d ' ' -f9)" \
--no-server \
--enable-all-security-services \
"${native_arguments[@]}"
exit_code=$?
if [[ ${exit_code} -ne 0 ]]; then
echo >&2 "Compilation failed with exit code ${exit_code}."
exit "${exit_code}"
fi
du -h runtime