Skip to content

Commit 57bc01b

Browse files
committed
Revert "Update branches for stable/rocky"
This reverts commit e5cac49. Change-Id: Ieceb5030a6c21378adcb9bf9c51cd862e0b0d01a
1 parent e5cac49 commit 57bc01b

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

stackrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.
2121
TRAILING_TARGET_BRANCH=master

tests/test_libs_from_pypi.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
98109
set -o errexit
99110

100111
test_libs_exist
112+
test_branch_master
101113
test_all_libs_upto_date

0 commit comments

Comments
 (0)