Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a7500a7b8b770de927ca536efc6c2d13006f0c8 (plain) (blame)
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
#!/bin/bash
#

if [ $# -ne 1 ]; then
    echo USAGE: $0 env_file
    exit 1
fi

if [ ! -r "$1" ]; then
    echo "$1" cannot be read
    echo USAGE: $0 env_file
    exit 1
fi

pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null

source $SCRIPT_PATH/build-functions.sh

source "$1"


cd $BUILD_ROOT

# derived values
gitCache=$( fn-git-cache "$BUILD_ROOT" "$BRANCH" )
aggDir=$( fn-git-dir "$gitCache" "$AGGREGATOR_REPO" )
signingDir=$( fn-git-dir "$gitCache" "$SIGNING_REPO" )


if [ -z "$BUILD_ID" ]; then
    BUILD_ID=$(fn-build-id "$BUILD_TYPE" )
fi

if $SIGNING; then
    fn-maven-signer-install "$signingDir" "$LOCAL_REPO"
fi

fn-maven-cbi-install "$aggDir" "$LOCAL_REPO"
fn-maven-parent-install "$aggDir" "$LOCAL_REPO"

exitCode=$( fn-maven-build-aggregator "$BUILD_ID" "$aggDir" "$LOCAL_REPO" $COMPARATOR $SIGNING $UPDATE_BRANDING $MAVEN_BREE )

# first make sure exit code is well formed
if [[ -z "${exitCode}" ]]
then 
    echo "exitcode was empty"
    exitrc=0
elif [[ "${exitCode}" =~ [0] ]]
then
    echo "exitcode was zero"
    exitrc=0
elif [[ "${exitCode}" =~ ^-?[0-9]+$ ]]  
then
    echo "exitcode was a legal, non-zero numeric return code"
    exitrc=$exitCode
else
    echo "exitode was not numeric, so will force to 1"
    exitrc=1
fi  

exit $exitrc

Back to the top