From 281cc6fc7b8d0d018712f91156c6a1ceb856d784 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Sat, 11 Aug 2018 21:54:50 -0400 Subject: [PATCH] Remove validate-job for mdsal neon stream The validate autorelease job was not designed to run on projects that have different branch name then all the other projects. This causes it to try to clone the wrong autorelease branch when running. Considering that mdsal is becoming a MRI project soon in the Neon stream. Let's remove the validate-autorelease job. The autorelease nightly build will catch MD-SAL issues anyway if there is a bug. Change-Id: Ia9f1c73833bb70af8f01b68d59ccb6f9adb9f2ba Signed-off-by: Thanh Ha --- .../update-validate-autorelease-projects.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jjb/autorelease/update-validate-autorelease-projects.sh b/jjb/autorelease/update-validate-autorelease-projects.sh index e261d51a52..e7691cb130 100644 --- a/jjb/autorelease/update-validate-autorelease-projects.sh +++ b/jjb/autorelease/update-validate-autorelease-projects.sh @@ -38,14 +38,14 @@ cat > "$YAML_FILE" << EOF EOF for module in "${modules[@]}"; do - echo "Include $module" - echo " - ${module//\//-}:" >> "$YAML_FILE" - echo " project: $module" >> "$YAML_FILE" - # TODO: Remove this once mdsal fully becomes an MRI project. if [ "$module" == "mdsal" ] && [ "$BRANCH" == "master" ]; then - echo " branch: v2.6.x" >> "$YAML_FILE" + continue fi + + echo "Include $module" + echo " - ${module//\//-}:" >> "$YAML_FILE" + echo " project: $module" >> "$YAML_FILE" done git add "${YAML_FILE}" -- 2.36.6