-
-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Associate a commit with beta releases (#5530)
- Loading branch information
1 parent
ede89c4
commit fa74466
Showing
1 changed file
with
34 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,58 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
CURRENT_VERSION="$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout | sed 's/-SNAPSHOT//')" | ||
CURRENT_VERSION_WITH_SNAPSHOT="$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" | ||
# Version used to create the beta release | ||
OLD_VERSION="$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout | sed 's/-SNAPSHOT//')" | ||
# Version that will be reset back to after the beta release | ||
OLD_VERSION_WITH_SNAPSHOT="$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" | ||
|
||
if [[ ! $CURRENT_VERSION_WITH_SNAPSHOT =~ .*-SNAPSHOT ]]; then | ||
if [[ ! $OLD_VERSION_WITH_SNAPSHOT =~ .*-SNAPSHOT ]]; then | ||
echo "Not a snapshot version, skipping" | ||
exit 78 | ||
fi | ||
|
||
# Compute next beta number | ||
echo "::group::Computing next beta number" | ||
LAST_BETA_NUMBER="$(curl -L "http://search.maven.org/solrsearch/select?q=a:spoon-core+g:fr.inria.gforge.spoon&rows=40&wt=json&core=gav" | jq -r ".response.docs | map(.v) | map((match(\"$CURRENT_VERSION-beta-(.*)\") | .captures[0].string) // \"0\") | .[0]")" | ||
LAST_BETA_NUMBER="$(curl -L "http://search.maven.org/solrsearch/select?q=a:spoon-core+g:fr.inria.gforge.spoon&rows=40&wt=json&core=gav" | jq -r ".response.docs | map(.v) | map((match(\"$OLD_VERSION-beta-(.*)\") | .captures[0].string) // \"0\") | .[0]")" | ||
echo "LAST_BETA_NUMBER $LAST_BETA_NUMBER" | ||
|
||
NEW_BETA_NUMBER=$((LAST_BETA_NUMBER + 1)) | ||
echo "NEW_BETA_NUMBER $NEW_BETA_NUMBER" | ||
NEXT_VERSION="$CURRENT_VERSION-beta-$NEW_BETA_NUMBER" | ||
NEXT_BETA_VERSION="$OLD_VERSION-beta-$NEW_BETA_NUMBER" | ||
echo "::endgroup::" | ||
|
||
echo "::group::Setting release version" | ||
mvn -f spoon-pom --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_VERSION" -DprocessAllModules | ||
mvn --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_VERSION" -DprocessAllModules | ||
mvn -f spoon-javadoc --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_VERSION" -DprocessAllModules | ||
BRANCH_NAME="beta-release/$NEXT_BETA_VERSION" | ||
|
||
echo "::group::Setting beta-release version" | ||
mvn -f spoon-pom --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_BETA_VERSION" -DprocessAllModules | ||
mvn --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_BETA_VERSION" -DprocessAllModules | ||
mvn -f spoon-javadoc --no-transfer-progress --batch-mode versions:set -DnewVersion="$NEXT_BETA_VERSION" -DprocessAllModules | ||
echo "::endgroup::" | ||
|
||
echo "::group::Commit & Push changes" | ||
git checkout -b "$BRANCH_NAME" | ||
git commit -am "release: Releasing version $NEXT_BETA_VERSION" | ||
git push --set-upstream origin "$BRANCH_NAME" | ||
echo "::endgroup::" | ||
|
||
echo "::group::Staging release" | ||
echo "::group::Staging beta-release" | ||
mvn -f spoon-pom --no-transfer-progress --batch-mode -Pjreleaser clean deploy -DaltDeploymentRepository=local::default::file:./target/staging-deploy | ||
mvn --no-transfer-progress --batch-mode -Pjreleaser deploy:deploy-file -Dfile="./spoon-pom/pom.xml" -DpomFile="./spoon-pom/pom.xml" -Durl="file://$(mvn help:evaluate -D"expression=project.basedir" -q -DforceStdout)/target/staging-deploy" | ||
echo "::endgroup::" | ||
|
||
echo "::group::Running jreleaser" | ||
JRELEASER_PROJECT_VERSION="$NEXT_VERSION" jreleaser-cli deploy | ||
JRELEASER_PROJECT_VERSION="$NEXT_BETA_VERSION" jreleaser-cli release | ||
echo "::endgroup::" | ||
|
||
echo "::group::Reverting to old SNAPSHOT version" | ||
git revert --no-commit HEAD | ||
git commit -m "release: Reverting to SNAPSHOT version $OLD_VERSION_WITH_SNAPSHOT" | ||
git push origin "$BRANCH_NAME" | ||
echo "::endgroup::" | ||
|
||
echo "::group::Merging into master (fast-forward)" | ||
git checkout master | ||
git merge --ff-only "$BRANCH_NAME" | ||
git push origin master | ||
git push origin --delete "$BRANCH_NAME" | ||
echo "::endgroup::" |