-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.sh
executable file
·81 lines (62 loc) · 1.71 KB
/
entrypoint.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
78
79
80
81
#!/bin/bash
usage () {
echo "Usage:
singularity run --bind $PWD/Tiles:/code/Project <container> [build|run]
Commands:
build: build your project
run: run your program
* You are required to bind the present working directory with your
extracted project folder (e.g., Ngrams, Wordladder, Tiles) to
/code/Project in the container. There should only be one .pro
file in the container.
Options [build|run]:
-b: The volume to bind, should be the directory with
project subfolder to the /code folder in the container.
Examples:
singularity run --bind $PWD/Tiles:/code/Project <container> build
singularity run --bind $PWD/Tiles:/code/Project <container> run
singularity run --bind $PWD/Tiles:/code/Project <container> build run
"
}
if [ $# -eq 0 ]; then
usage
exit
fi
PROJECT_RUN="no";
PROJECT_BUILD="no";
while true; do
case ${1:-} in
-h|--help|help)
usage
exit
;;
build)
PROJECT_BUILD="yes"
shift
;;
run)
PROJECT_RUN="yes"
shift
;;
-*)
echo "Unknown option: ${1:-}"
exit 1
;;
*)
break
;;
esac
done
# First try build
if [ "${PROJECT_BUILD}" == "yes" ]; then
/bin/bash /code/build.sh
retval=$?
if [ "${retval}" -ne "0" ]; then
PROJECT_RUN="no";
echo "Project build not successful, debug above starting at the top.";
fi
fi
# Next run
if [ "${PROJECT_RUN}" == "yes" ]; then
/bin/bash /code/run.sh
fi