From 81c2c515c4c92cb77d7bc31eb2f2771ca2063216 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Thu, 16 Dec 2021 12:56:37 +0000 Subject: Release scripts for repos, images, OOM, refs bumpSnapshots.sh: Steps the patch version of snapshot images based on the data in the policy release data file. generateCommit.sh: At the suggestion of OOM, the order of the generated messages is changed. releaseRepo.sh: Generates the release yaml file and the commit to release the maven artifacts of a repo releaseRepoImages.sh: Generates the release yaml fole and the commit to release the docker images from a repo updateOomImages.sh: Generates a commit that updats the references to Policy Framework docker images in OOM updateRefs.sh: Updates the parent. common, models., drools-pdp, and Docker base images in Docker files for reselases or snapshots. Issue-ID: POLICY-3835 Change-Id: I0766a779c2217a57a33ed37725f11acdfb07a16d Signed-off-by: liamfallon --- integration/src/release_scripts/generateCommit.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'integration/src/release_scripts/generateCommit.sh') diff --git a/integration/src/release_scripts/generateCommit.sh b/integration/src/release_scripts/generateCommit.sh index 32775927..8c21c308 100755 --- a/integration/src/release_scripts/generateCommit.sh +++ b/integration/src/release_scripts/generateCommit.sh @@ -4,7 +4,7 @@ # ============LICENSE_START================================================ # ONAP # ========================================================================= -# Copyright (C) 2021 Nordix Foundation. +# Copyright (C) 2021-2022 Nordix Foundation. # ========================================================================= # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,6 +20,8 @@ # ============LICENSE_END================================================== # +set -e + SCRIPT_NAME=`basename $0` repo_location="./" @@ -137,10 +139,10 @@ then commit_msg_temp_file=$(mktemp) echo "$commit_header" > $commit_msg_temp_file echo "" >> $commit_msg_temp_file - echo "*** This commit is generated by a PF release script ***" >> $commit_msg_temp_file - echo "" >> $commit_msg_temp_file echo "$commit_message" >> $commit_msg_temp_file echo "" >> $commit_msg_temp_file + echo "*** This commit is generated by a PF release script ***" >> $commit_msg_temp_file + echo "" >> $commit_msg_temp_file echo "Issue-ID: $issue_id" >> $commit_msg_temp_file git -C $repo_location/$specified_repo add . -- cgit 1.2.3-korg