forked from spring-attic/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_train.sh
executable file
·221 lines (191 loc) · 7.26 KB
/
release_train.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#!/usr/local/bin/bash
#!/bin/bash
# If you have exceptions while using associative arrays from Bash 4.0 in OSX.
# instead of #!/bin/bash you have to have #!/usr/local/bin/bash
set -e
declare -A PROJECTS
ROOT_FOLDER=$(pwd)
SPRING_CLOUD_RELEASE_REPO=${SPRING_CLOUD_RELEASE_REPO:[email protected]:spring-cloud/spring-cloud-release.git}
MAVEN_PATH=${MAVEN_PATH:-}
RELEASE_TRAIN_PROJECTS=${RELEASE_TRAIN_PROJECTS:-aws bus cloudfoundry commons contract config netflix security consul sleuth stream task zookeeper vault}
if [ -e "${ROOT_FOLDER}/mvnw" ]; then
MAVEN_EXEC="$ROOT_FOLDER/mvnw"
else
MAVEN_EXEC="${MAVEN_PATH}mvn"
fi
# Retrieves from spring-cloud-dependencies module the version of a
function retrieve_version_from_maven() {
RETRIEVED_VERSION=$("${MAVEN_EXEC}" -q \
-Dexec.executable="echo" \
-Dexec.args="\${spring-cloud-${1}.version}" \
org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \
-o -pl spring-cloud-dependencies )
echo "Extracted version for project [$1] from Maven build is [${RETRIEVED_VERSION}]"
}
# Prints the usage
function print_usage() {
cat <<EOF
Welcome to the release train docs generation. You will be asked to provide
the names of folders with projects taking part in the release. You will also
have to provide the library versions
USAGE:
You can use the following options:
-i|--interactive - running the script in an interactive mode
-v|--version - release train version
-p|--projects - comma separated list of projects in project:version notation. E.g. ( -p sleuth:1.0.6.RELEASE,cli:1.1.5.RELEASE )
-a|--auto - no user prompting will take place. Normally after all the parsing is done, before docs building you can check if versions are correct
-g|--ghpages - will also publish the docs to gh-pages of spring-cloud-static automatically
-r|--retrieveversions - will clone spring-cloud-release and take properties from there
EOF
}
cat << \EOF
______ _____ _ _____ ___ _____ _____
| ___ \ ___| | | ___|/ _ \ / ___| ___|
| |_/ / |__ | | | |__ / /_\ \\ `--.| |__
| /| __|| | | __|| _ | `--. \ __|
| |\ \| |___| |____| |___| | | |/\__/ / |___
\_| \_\____/\_____/\____/\_| |_/\____/\____/
___________ ___ _____ _ _
|_ _| ___ \/ _ \|_ _| \ | |
| | | |_/ / /_\ \ | | | \| |
| | | /| _ | | | | . ` |
| | | |\ \| | | |_| |_| |\ |
\_/ \_| \_\_| |_/\___/\_| \_/
______ _____ _____ _____
| _ \ _ / __ \/ ___|
| | | | | | | / \/\ `--.
| | | | | | | | `--. \
| |/ /\ \_/ / \__/\/\__/ /
|___/ \___/ \____/\____/
EOF
while [[ $# > 0 ]]
do
key="$1"
case ${key} in
-i|--interactive)
INTERACTIVE="yes"
;;
-a|--auto)
AUTO="yes"
;;
-v|--version)
VERSION="$2"
shift # past argumen
;;
-p|--projects)
INPUT_PROJECTS="$2"
shift # past argumen
;;
-g|--ghpages)
GH_PAGES="yes"
;;
-r|--retrieveversions)
RETRIEVE_VERSIONS="yes"
;;
-h|--help)
print_usage
exit 0
;;
*)
echo "Invalid option: [$1]"
print_usage
exit 1
;;
esac
shift # past argument or value
done
if [[ "${VERSION}" != "" && -z "${INPUT_PROJECTS}" && -z "${RETRIEVE_VERSIONS}" ]] ; then echo -e "WARNING: Version was passed but no projects were passed... setting retrieval option\n\n" && RETRIEVE_VERSIONS="yes";fi
if [[ -z "${VERSION}" && "${INPUT_PROJECTS}" != "" ]] ; then echo -e "WARNING: Projects were passed but version wasn't... quitting\n\n" && print_usage && exit 1;fi
if [[ "${RETRIEVE_VERSIONS}" != "" && "${INPUT_PROJECTS}" != "" ]] ; then echo -e "WARNING: Can't have both projects and retreived projects passed... quitting\n\n" && print_usage && exit 1;fi
if [[ -z "${VERSION}" ]] ; then echo "No version passed - starting in interactive mode..." && INTERACTIVE="yes";fi
echo "Path to Maven is [${MAVEN_EXEC}]"
if [[ "${INTERACTIVE}" == "yes" ]] ; then
echo "Welcome to the release train docs generation. You will be asked to provide"
echo "the names of folders with projects taking part in the release. You will also"
echo -e "have to provide the library versions\n"
echo -e "\nEnter the name of the release train"
read RELEASE_TRAIN
while :
do
echo -e "\nEnter the project name (pass the name as the project's folder is called)"
read projectName
echo "Enter the project version"
read projectVersion
PROJECTS[${projectName}]=${projectVersion}
echo "Press any key to provide another project version or 'q' to continue"
read key
if [[ ${key} = "q" ]]
then
break
fi
done
elif [[ "${VERSION}" != "" && -z "${RETRIEVE_VERSIONS}" ]] ; then
RELEASE_TRAIN=${VERSION}
echo "Parsing projects"
IFS=',' read -ra TEMP <<< "$INPUT_PROJECTS"
for i in "${TEMP[@]}"; do
IFS=':' read -ra TEMP_2 <<< "$i"
PROJECTS[${TEMP_2[0]}]=${TEMP_2[1]}
done
else
RELEASE_TRAIN=${VERSION}
echo "Will attempt to retrieve versions from [[email protected]:spring-cloud/spring-cloud-release.git]"
mkdir -p ${ROOT_FOLDER}/target
clonedStatic=${ROOT_FOLDER}/target/spring-cloud-release
if [[ ! -e "${clonedStatic}/.git" ]]; then
echo "Cloning Spring Cloud Release to target"
git clone ${SPRING_CLOUD_RELEASE_REPO} ${clonedStatic}
else
echo "Spring Cloud Release already cloned - will pull changes"
cd ${clonedStatic} && git fetch
fi
cd ${clonedStatic}
git checkout v"${VERSION}"
git status
ARTIFACTS=( ${RELEASE_TRAIN_PROJECTS} )
echo -e "\n\nRetrieving versions from Maven for projects [${RELEASE_TRAIN_PROJECTS}]\n\n"
for i in ${ARTIFACTS[@]}; do
retrieve_version_from_maven ${i}
PROJECTS[${i}]=${RETRIEVED_VERSION}
done
echo "Continuing with the script"
fi
echo -e "\n\n==========================================="
echo "Release train version:"
echo ${RELEASE_TRAIN}
echo -e "\nProjects versions:"
for K in "${!PROJECTS[@]}"; do echo -e "${K} -> ${PROJECTS[$K]}"; done
echo -e "==========================================="
if [[ "${AUTO}" != "yes" ]] ; then
echo -e "\nPress any key to continue or 'q' to quit"
read key
if [[ ${key} = "q" ]]
then
exit 1
fi
else
echo -e "\nAuto switch was turned on - continuing with modules updating"
fi
cd ${ROOT_FOLDER}
echo "For the given modules will enter their directory, pull the changes and check out the tag"
for K in "${!PROJECTS[@]}"
do
echo -e "\nChecking out tag [v${PROJECTS[$K]}] for project [${K}]"
git submodule update --init ${K} || echo "Sth went wrong - trying to continue"
cd ${ROOT_FOLDER}/${K}
git fetch --tags
echo "Removing all changes" && git reset --hard
git checkout v"${PROJECTS[$K]}" || (echo "Failed to check out v${PROJECTS[$K]} will try ${PROJECTS[$K]}" && git checkout "${PROJECTS[$K]}")
[[ -f .gitmodules ]] && git submodule update --init
git status
cd ${ROOT_FOLDER}
done
cd ${ROOT_FOLDER}
echo "Building the docs with release train version [${RELEASE_TRAIN}]"
./mvnw clean install -Pdocs,build -Drelease.train.version=${RELEASE_TRAIN} -pl docs
if [[ "${GH_PAGES}" == "yes" ]] ; then
echo "Downloading gh-pages.sh from spring-cloud-build's master"
mkdir -p target
curl https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/ghpages.sh -o target/gh-pages.sh && chmod +x target/gh-pages.sh
./target/gh-pages.sh --version ${RELEASE_TRAIN} --releasetrain --clone
fi