This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 172
/
build.sh
executable file
·63 lines (53 loc) · 1.77 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
#!/usr/bin/env bash
set -e
usage() {
# This script does a full build/test of the SDK's own artifacts: bootstrap and default CLI
# This does not upload the artifacts, instead see test.sh or frameworks/*/build.sh.
# This script (and test.sh) are executed by CI upon pull requests to the repository, or may be run locally by developers.
echo "Syntax: build.sh [options]"
echo "Options:"
echo " -b Just build -- skip tests (or set GO_TESTS=false and JAVA_TESTS=false)"
echo "Env:"
echo " BOOTSTRAP_DIR: Custom directory where bootstrap is located, or 'disable' to disable bootstrap build"
echo " CLI_DIR: Custom directory where default CLI is located, or 'disable' to disable default CLI build"
}
while getopts 'b' opt; do
case $opt in
b)
JAVA_TESTS="false"
export GO_TESTS="false"
;;
\?)
usage
exit 1
;;
esac
done
shift $((OPTIND-1))
REPO_ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BOOTSTRAP_DIR=${BOOTSTRAP_DIR:=${REPO_ROOT_DIR}/sdk/bootstrap}
CLI_DIR=${CLI_DIR:=${REPO_ROOT_DIR}/sdk/cli}
EXECUTOR_DIR=${EXECUTOR_DIR:=${REPO_ROOT_DIR}/sdk/executor}
DISABLED_VALUE="disable"
cd $REPO_ROOT_DIR
##
# GO BUILD
##
# Build Go bits: bootstrap and default CLI
BOOTSTRAP_ARTIFACT=""
if [ "$BOOTSTRAP_DIR" != $DISABLED_VALUE ]; then
# Produces: ${BOOTSTRAP_DIR}/bootstrap.zip
${BOOTSTRAP_DIR}/build.sh
fi
if [ "$CLI_DIR" != $DISABLED_VALUE ]; then
# Produces: ${CLI_DIR}/dcos-service-cli-linux ${CLI_DIR}/dcos-service-cli-darwin ${CLI_DIR}/dcos-service-cli.exe
${CLI_DIR}/build.sh
fi
##
# JAVA BUILD
##
# Run ALL Java unit tests
if [ x"${JAVA_TESTS:-true}" == x"true" ]; then
# Build steps for SDK libraries:
./gradlew clean check
fi