forked from Apicurio/apicurio-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pr-check.sh
executable file
·82 lines (57 loc) · 2.38 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
#!/bin/bash
set -eo pipefail
PROJECT_NAME="multitenant-service-registry"
display_usage() {
cat <<EOT
###########################################################################################
This script gets triggered by the automated CI/CD jobs of AppSRE. It builds and tests
'${PROJECT_NAME}' whenever a pull request is raised.
Usage: $0 [options]
Example: $0
options include:
-h, --help This help message
#############################################################################################
EOT
}
build_project() {
echo "#######################################################################################################"
echo " Building Project '${PROJECT_NAME}'..."
echo "#######################################################################################################"
# AppSRE environments doesn't has maven, jdk11, node and yarn which are required depencies for building this project
# Installing these dependencies is a tedious task and also since it's a shared instance, installing the required versions of these dependencies is not possible sometimes
# Hence, using custom container that packs the required dependencies with the specific required versions
# docker run --rm -t -u $(id -u):$(id -g) -w /home/user -v $(pwd):/home/user quay.io/riprasad/srs-project-builder:latest bash -c "${MVN_BUILD_COMMAND}"
#TODO confirm we are ok with this, using this ci-tools image is the recomended way, but using this we don't control the java nor maven version...
# docker pull quay.io/app-sre/mk-ci-tools:latest
# docker run -v $(pwd):/opt/srs -w /opt/srs -e HOME=/tmp -u $(id -u) \
# -e LANG=en_US.UTF-8 \
# -e LANGUAGE=en_US:en \
# -e LC_ALL=en_US.UTF-8 \
# quay.io/app-sre/mk-ci-tools:latest make pr-check
docker login -u "${QUAY_USER}" -p "${QUAY_TOKEN}" quay.io
docker build -t apicurio-registry-test -f Dockerfile.testing .
docker run -i apicurio-registry-test
}
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
# function calls
build_project
}
main $*