Skip to content

Commit

Permalink
NO-JIRA cherry-pick report between main and maintenance branches
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Jan 14, 2022
1 parent 7e4191e commit e5d0b69
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions scripts/cherry-pick-report.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@

#!/bin/sh
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Setting the script to fail if anything goes wrong
set -e

# set this to true if you want to query the JIRAs on the report
USE_REST=false


# use this script to create a report on cherry-picks between main and maintenance branches
# start this script within the checkout folder

if [ ! -d "./target" ]
then
mkdir target
fi

cd target

if [ ! -d "./cherry-pick-report" ]
then
mkdir cherry-pick-report
fi

cd cherry-pick-report

if [ -d "./jira-git-report" ]
then
cd jira-git-report
git pull --rebase origin master
else
git clone git@github.com:rh-messaging/jira-git-report.git
cd jira-git-report
fi

mvn compile assembly:single

java -jar ./target/jira-git-0.1.SNAPSHOT-jar-with-dependencies.jar artemis ../../.. ../cherry-pick-report.html 2.19.0 main ${USE_REST} 2.19.x 2.19.0


echo "=============================================================================================================================="
echo " Report generated at ./target/cherry-pick-report/cherry-pick-report.html"
echo "=============================================================================================================================="



0 comments on commit e5d0b69

Please sign in to comment.