File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ source $RC_DIR/functions
1515
1616# Set the target branch. This is used so that stable branching
1717# does not need to update each repo below.
18- TARGET_BRANCH=stable/rocky
18+ TARGET_BRANCH=master
1919
2020# Cycle trailing projects need to branch later than the others.
2121TRAILING_TARGET_BRANCH=master
Original file line number Diff line number Diff line change @@ -95,7 +95,19 @@ function test_libs_exist {
9595 echo " test_libs_exist PASSED"
9696}
9797
98+ function test_branch_master {
99+ for lib in $ALL_LIBS ; do
100+ if [[ ${GITBRANCH[$lib]} != " master" ]]; then
101+ echo " GITBRANCH for $lib not master (${GITBRANCH[$lib]} )"
102+ exit 1
103+ fi
104+ done
105+
106+ echo " test_branch_master PASSED"
107+ }
108+
98109set -o errexit
99110
100111test_libs_exist
112+ test_branch_master
101113test_all_libs_upto_date
You can’t perform that action at this time.
0 commit comments