This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pr_check.sh
executable file
·87 lines (60 loc) · 1.96 KB
/
pr_check.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
82
83
84
85
86
87
#!/bin/bash
# Inspired by https://disconnected.systems/blog/another-bash-strict-mode/
set -eEu -o pipefail
trap 's=$?; echo "[ERROR] [$(date +"%T")] on $0:$LINENO"; exit $s' ERR
COMPONENT="ads-editors"
BUILD_COMMAND="docker build -f ./build/Dockerfile -t="${COMPONENT}" --rm ."
function log() {
echo "[$1] [$(date +"%T")] - ${2}"
}
function step() {
log "STEP" "$1"
}
function display_usage() {
cat <<EOT
###########################################################################################
This script gets triggered by the automated CI/CD jobs of AppSRE. It builds and tests
'${COMPONENT}' whenever a pull request is raised.
Usage: $0 [options]
Example: $0
options include:
-h, --help This help message
#############################################################################################
EOT
}
function build_project() {
echo "#######################################################################################################"
echo " Build Command: ${BUILD_COMMAND}"
echo "#######################################################################################################"
# AppSRE environments doesn't have the required depencies for building this project
# Installing the required dependencies is a tedious task since it's a shared instance
# Hence, using the multistage docker build to build and test the project.
${BUILD_COMMAND}
}
function main() {
# Parse command line arguments
while [ $# -gt 0 ]
do
arg="$1"
case $arg in
-h|--help)
shift
display_usage
exit 0
;;
*)
echo "Unknown argument: $1"
display_usage
exit 1
;;
esac
shift
done
if [[ ! -d ./.git ]]; then
echo "error: the $0 script must be executed from the project root"
exit 1
fi
step "Build Project: ${COMPONENT}"
build_project
}
main $*