Merge "Create jenkins pipeline for k6 performance tests"
[infra/cicd.git] / jjb / global / verify_geode_tag.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2018-2019 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20 set -o errexit
21 set -o nounset
22
23 gitlog(){
24     git log --pretty=format:'%Cred%h|%Cgreen%an|%Cblue%s%Creset' | \
25     awk -F '|' '{ printf "%s %-20s %s\n", $1, $2, $3 }' | head -${1}
26 }
27
28 # There could be 2 directory with source: geode or geode-native
29 cd ${WORKSPACE}/geode*
30 GEODE_VERSION=$(git describe --abbrev=0 --tags | sed -r "s#rel/v(.*)#\1#")
31 GIT_LOGS=8
32
33 # Make sure the Geode tag version is in agreed format: \d.\d.\d.\d.[RC\d]?
34 if [[ ${GEODE_VERSION} =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+(\.RC[0-9]+)?$ ]] ; then
35    echo -e "\n--------------------------------------------------------------------------"
36    echo -e "\nTesting Geode version: ${GEODE_VERSION}\n"
37    echo -e "------------------- Summary for last commit on the branch ------------------"
38    git show --stat
39    echo -e "\n--------------- The last ${GIT_LOGS} commits on the branch ---------------"
40    gitlog ${GIT_LOGS}
41 else
42    echo "ERROR: Incorrect geode tag version on the branch: ${GEODE_VERSION}"
43    exit 1
44 fi