diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-07-26 11:59:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2017-07-26 11:59:19 +0000 |
commit | 55a51b0ba4e1f4cf007c4c90287e6092771e838f (patch) | |
tree | e87ad00c67c16a8ba357006a1d8df120d2fbc595 | |
parent | 7f24252b368fdccd505b58e066e14a3d12a4a46f (diff) | |
parent | 06d2754dd81c1e04d42b6acfcc767e9e23c6b584 (diff) |
Merge "Special case meta-renesas-rcar-gen3 as branches are not aligned"
-rw-r--r-- | jjb/common/include-agl-repo.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/jjb/common/include-agl-repo.sh b/jjb/common/include-agl-repo.sh index fee52137..1d27c71d 100644 --- a/jjb/common/include-agl-repo.sh +++ b/jjb/common/include-agl-repo.sh @@ -19,7 +19,11 @@ cd repoclone export REPODIR=`pwd` if test x"" = x"${RELEASE_VERSION}" -a x"" = x"${RELEASE_BRANCH}" ; then - repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + if test x"meta-renesas-rcar-gen3" = x"${TARGETPROJECT}" ; then + repo init --reference=/opt/AGL/preclone -q -b master -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + else + repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + fi else repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -m ${RELEASE_BRANCH}_${RELEASE_VERSION}.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo fi |