X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fbranch_cut%2Fbranch_cutter.sh;h=4fade0a72d1c0373d0b2d1955e66534fcd785589;hb=ff527e078861c283e7365071e7bd782549525195;hp=6f9c7a3cadeb8c6224c7b267d6b51c324e1d1cbf;hpb=159fd0f5702e0a904ac938f8dc6b43f85646cf3f;p=releng%2Fbuilder.git diff --git a/scripts/branch_cut/branch_cutter.sh b/scripts/branch_cut/branch_cutter.sh index 6f9c7a3ca..4fade0a72 100755 --- a/scripts/branch_cut/branch_cutter.sh +++ b/scripts/branch_cut/branch_cutter.sh @@ -1,6 +1,5 @@ #!/bin/bash - -# @License EPL-1.0 +# SPDX-License-Identifier: EPL-1.0 ############################################################################## # Copyright (c) 2017 The Linux Foundation and others. # @@ -11,17 +10,24 @@ # ############################################################################## -# List of files exclude -declare -a excludes=("releng-defaults.yaml" - "releng-macros.yaml") +# List of directories, files to exclude +declare -a excludes=("defaults.yaml" + "releng-macros.yaml" + "global-jjb" + "lf-infra" + "-macros.yaml" + "validate-autorelease" + "opflex-dependencies.yaml") TEMP="/tmp/tmp.yaml" mod=0 count=0 function usage { - echo "Usage: $(basename $0) options (-n [next release]) (-c [current release]) (-p [previous release]) -h for help"; - exit 1; + echo "Usage: $(basename $0) options (-c [current release]) (-n [next release]) (-p [previous release]) -h for help"; + echo "example:" + echo "branch_cutter.sh -n oxygen -c nitrogen -p carbon" + exit 0; } if ( ! getopts ":n:c:p:h" opt ); then @@ -55,20 +61,20 @@ done echo "Start Branch Cutting:" -while IFS="" read -r y; do +while IFS="" read -r file; do found=0 - for f in "${excludes[@]}"; do - if [[ $y =~ $f && $found -eq 0 ]]; then + for exclude in "${excludes[@]}"; do + if [[ $file =~ $exclude && $found -eq 0 ]]; then found=1 break fi done if [[ $found -eq 1 ]]; then - echo "Ignore file $y found in excludes list" + echo "Ignore file $file found in excludes list" else - ./branch_cut.awk -v new_reltag="$new_reltag" -v curr_reltag="$curr_reltag" -v prev_reltag="$prev_reltag" "$y" > "$TEMP" - [[ ! -s "$TEMP" ]] && echo "$y: excluded" - [[ -s "$TEMP" ]] && mv "$TEMP" "$y" && echo "$y: Done" && let "mod++" + ./branch_cut.awk -v new_reltag="$new_reltag" -v curr_reltag="$curr_reltag" -v prev_reltag="$prev_reltag" "$file" > "$TEMP" + [[ ! -s "$TEMP" ]] && echo "$file: excluded" + [[ -s "$TEMP" ]] && mv "$TEMP" "$file" && echo "$file: Done" && let "mod++" let "count++" fi done < <(find ../../jjb -name "*.yaml")