X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fautorelease%2Fupdate-validate-autorelease-projects.sh;h=5bc1901a4e8dc3872ae71cd6e033e08d77ad22f8;hb=cc7976c025a59a9977ac1cd66d6a37cea7ca216b;hp=e277a2a790883dbba700a51faf6e960a2cd8c63c;hpb=6ad55889f8c086bbe9aa9e16160b0d475a744d1d;p=releng%2Fbuilder.git diff --git a/jjb/autorelease/update-validate-autorelease-projects.sh b/jjb/autorelease/update-validate-autorelease-projects.sh index e277a2a79..5bc1901a4 100644 --- a/jjb/autorelease/update-validate-autorelease-projects.sh +++ b/jjb/autorelease/update-validate-autorelease-projects.sh @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/bash -l # SPDX-License-Identifier: EPL-1.0 ############################################################################## -# Copyright (c) 2017 The Linux Foundation and others. +# Copyright (c) 2017 - 2018 The Linux Foundation and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 @@ -14,12 +14,15 @@ BRANCH="stable/${STREAM}" # The current development release will not have a stable branch defined so if # branch does not exist assume master -wget -nv -O /tmp/ar-branches.json https://git.opendaylight.org/gerrit/projects/releng%2Fautorelease/branches/ -if ! grep "$BRANCH" /tmp/ar-branches.json; then - BRANCH=master +url="https://git.opendaylight.org/gerrit/projects/releng%2Fautorelease/branches/" +resp=$(curl -s -w "\\n\\n%{http_code}" --globoff -H "Content-Type:application/json" "$url") +if [[ ! "$resp" =~ $BRANCH ]]; then + BRANCH="master" fi wget -nv -O /tmp/pom.xml "https://git.opendaylight.org/gerrit/gitweb?p=releng/autorelease.git;a=blob_plain;f=pom.xml;hb=$GERRIT_BRANCH" +# Allow word splitting as we only expect modules to appear +# shellcheck disable=2207 modules=($(xmlstarlet sel -N x=http://maven.apache.org/POM/4.0.0 -t -m '//x:modules' -v '//x:module' /tmp/pom.xml)) cat > "$YAML_FILE" << EOF @@ -35,6 +38,11 @@ cat > "$YAML_FILE" << EOF EOF for module in "${modules[@]}"; do + # TODO: Remove this once mdsal fully becomes an MRI project. + if [ "$module" == "mdsal" ] && [ "$BRANCH" == "master" ]; then + continue + fi + echo "Include $module" echo " - ${module//\//-}:" >> "$YAML_FILE" echo " project: $module" >> "$YAML_FILE"