Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 5d5df6290d5896e29f672b278aeec3750e10be08 (plain) (tree)
1
2
3
4
5
6
7
8
9



                     

                           


                      


                            


                                
                                  

               
                                      
 
           






                                                     
                                                                              

                           
                                          

  
                                              








                                                                                    

                                                               
#!/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" )
buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BRANCH" "$BUILD_ID" "$STREAM" )

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

fn-pom-version-updater "$aggDir" "$LOCAL_REPO"
RC=$?
if [[ $RC != 0 ]]
then
    buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BRANCH" "$BUILD_ID" "$STREAM" )
    # create as "indicator file" ... gets filled in more once there is a log to grep
    touch  "${buildDirectory}/buildFailed-pom-version-updater"
    echo "ERROR: fn-pom-version-updator returned non-zero return code: $RC"
    exit $RC1
fi
fn-pom-version-report "$BUILD_ID" "$aggDir"  "$buildDirectory" 

Back to the top