Change-Id: Ia6de4b83f56c5ac0af19b0ca4f12aa4d47fd963a
| ... | ... |
@@ -15,7 +15,7 @@ source $RC_DIR/functions |
| 15 | 15 |
|
| 16 | 16 |
# Set the target branch. This is used so that stable branching |
| 17 | 17 |
# does not need to update each repo below. |
| 18 |
-TARGET_BRANCH=master |
|
| 18 |
+TARGET_BRANCH=stable/rocky |
|
| 19 | 19 |
|
| 20 | 20 |
# Cycle trailing projects need to branch later than the others. |
| 21 | 21 |
TRAILING_TARGET_BRANCH=master |
| ... | ... |
@@ -95,19 +95,7 @@ function test_libs_exist {
|
| 95 | 95 |
echo "test_libs_exist PASSED" |
| 96 | 96 |
} |
| 97 | 97 |
|
| 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 |
- |
|
| 109 | 98 |
set -o errexit |
| 110 | 99 |
|
| 111 | 100 |
test_libs_exist |
| 112 |
-test_branch_master |
|
| 113 | 101 |
test_all_libs_upto_date |