e1a4c0267114ca1e08ed9b075cba9e8ef1766989
[releng.git] / jjb / fuel / fuel-build.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -o errexit
11 set -o nounset
12 set -o pipefail
13
14 export TERM="vt220"
15
16 cd $WORKSPACE
17
18 # remove the expired items from cache
19 test -f $WORKSPACE/ci/clean_cache.sh && $WORKSPACE/ci/clean_cache.sh $CACHE_DIRECTORY
20
21 LATEST_ISO_PROPERTIES=$WORKSPACE/latest.iso.properties
22 if [[ "$JOB_NAME" =~ "daily" ]]; then
23     # check to see if we already have an artifact on artifacts.opnfv.org
24     # for this commit during daily builds
25     echo "Checking to see if we already built and stored Fuel ISO for this commit"
26
27     curl -s -o $LATEST_ISO_PROPERTIES http://$GS_URL/latest.properties 2>/dev/null
28 fi
29
30 # get metadata of latest ISO
31 if grep -q OPNFV_GIT_SHA1 $LATEST_ISO_PROPERTIES 2>/dev/null; then
32     LATEST_ISO_SHA1=$(grep OPNFV_GIT_SHA1 $LATEST_ISO_PROPERTIES | cut -d'=' -f2)
33     LATEST_ISO_URL=$(grep OPNFV_ARTIFACT_URL $LATEST_ISO_PROPERTIES | cut -d'=' -f2)
34 else
35     LATEST_ISO_SHA1=none
36 fi
37
38 # get current SHA1
39 CURRENT_SHA1=$(git rev-parse HEAD)
40
41 # set FORCE_BUILD to false for non-daily builds
42 FORCE_BUILD=${FORCE_BUILD:-false}
43
44 if [[ "$CURRENT_SHA1" == "$LATEST_ISO_SHA1" && "$FORCE_BUILD" == "false" ]]; then
45     echo "***************************************************"
46     echo "   An ISO has already been built for this commit"
47     echo "   $LATEST_ISO_URL"
48     echo "***************************************************"
49 #    echo "Nothing new to build. Exiting."
50 #    touch $WORKSPACE/.noupload
51 #    exit 0
52 else
53     echo "This commit has not been built yet or forced build! Proceeding with the build."
54     /bin/rm -f $LATEST_ISO_PROPERTIES
55     echo
56 fi
57
58 # log info to console
59 echo "Starting the build of $INSTALLER_TYPE. This could take some time..."
60 echo "--------------------------------------------------------"
61 echo
62
63 # create the cache directory if it doesn't exist
64 mkdir -p $CACHE_DIRECTORY
65
66 # set OPNFV_ARTIFACT_VERSION
67 if [[ "$JOB_NAME" =~ "merge" ]]; then
68     echo "Building Fuel ISO for a merged change"
69     export OPNFV_ARTIFACT_VERSION="gerrit-$GERRIT_CHANGE_NUMBER"
70 else
71     export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d_%H-%M-%S")
72 fi
73
74 NOCACHE_PATTERN="verify: no-cache"
75 if [[ "$JOB_NAME" =~ "verify" && "$GERRIT_CHANGE_COMMIT_MESSAGE" =~ "$NOCACHE_PATTERN" ]]; then
76     echo "The cache will not be used for this build!"
77     NOCACHE_ARG="-f P"
78 fi
79 NOCACHE_ARG=${NOCACHE_ARG:-}
80
81 # start the build
82 cd $WORKSPACE/ci
83 ./build.sh -v $OPNFV_ARTIFACT_VERSION $NOCACHE_ARG -c file://$CACHE_DIRECTORY $BUILD_DIRECTORY
84
85 # list the build artifacts
86 ls -al $BUILD_DIRECTORY
87
88 # save information regarding artifact into file
89 (
90     echo "OPNFV_ARTIFACT_VERSION=$OPNFV_ARTIFACT_VERSION"
91     echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)"
92     echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)"
93     echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso"
94     echo "OPNFV_ARTIFACT_SHA512SUM=$(sha512sum $BUILD_DIRECTORY/opnfv-$OPNFV_ARTIFACT_VERSION.iso | cut -d' ' -f1)"
95     echo "OPNFV_BUILD_URL=$BUILD_URL"
96 ) > $WORKSPACE/opnfv.properties
97
98 echo
99 echo "--------------------------------------------------------"
100 echo "Done!"