Update git submodules
authorAric Gardner <agardner@linuxfoundation.org>
Thu, 20 Sep 2018 17:50:02 +0000 (13:50 -0400)
committerGerrit Code Review <gerrit@opnfv.org>
Fri, 23 Nov 2018 20:31:48 +0000 (20:31 +0000)
commitbbef80be5b4086e0f9392d40eac9732fe4ab79b6
treefb68a079404a981c6ba1ab87af9fabfacd682f35
parent5395636c8fdb4cb9668fb2b309f3ff589756cf93
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Rework creating tags & branches from release files

    Old method could not properly handle both branching and
    tagging on changes to the release file.

    Proposed method:
    jjb calls:
    jjb/releng/branch-or-tag.sh
    for both verify and merge jobs.

    branch-or-tag determins nature of the change to
    "releases/branch/project.yaml"
    and calls
     releng-release-tagging.sh
    or
     releng-release-create-branch.sh

    The scripts above handle both verify and merge operations

    based on
      if [[ $TAG_EXISTS = false && "$JOB_NAME" =~ "merge" ]];
    and
      if [[ $REF_EXISTS = true && "$JOB_NAME" =~ "merge" ]]; then

    both scripts check that the ref exits in verfiy and merge stages.

    if releng-release-create-branch.sh creates a branch it then also
    calls releases/scripts/create_jobs.py

    Change-Id: Ieb99de5e4df100af59ecc818f52b0831383b2b62
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
docs/submodules/releng