| #!/usr/bin/env bash |
| #------------------------------------------------------------- |
| # |
| # 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. |
| # |
| #------------------------------------------------------------- |
| |
| ################################################################################ |
| ## File: do-release.sh |
| ## Desc: Triggers the release workflow |
| ################################################################################ |
| |
| SELF=$(cd $(dirname $0) && pwd) |
| . "$SELF/release-utils.sh" |
| |
| # discussion on optional arguments |
| # https://stackoverflow.com/q/18414054 |
| while getopts ":ng" opt; do |
| case $opt in |
| n) DRY_RUN=1 ;; |
| g) GITHUB_CI=1 ;; |
| \?) error "Invalid option: $OPTARG" ;; |
| esac |
| done |
| |
| DRY_RUN=${DRY_RUN:-0} |
| GITHUB_CI=${GITHUB_CI:-0} |
| |
| cleanup_repo |
| |
| # Ask for release information |
| get_release_info |
| |
| if is_github_ci; then |
| printf "\n Building via GITHUB actions \n" |
| fi |
| |
| # tag |
| run_silent "Creating release tag $RELEASE_TAG..." "tag.log" \ |
| "$SELF/create-tag.sh" |
| |
| cat tag.log |
| |
| # run_silent "Publish Release Candidates to the Nexus Repo..." "publish-snapshot.log" \ |
| # "$SELF/release-build.sh" publish-snapshot |
| |
| if ! is_dry_run; then |
| git checkout $RELEASE_TAG |
| printf "\n checking out $RELEASE_TAG for building artifacts \n" |
| fi |
| |
| # NOTE: |
| # The following goals publishes the artifacts to |
| # 1) Nexus repo at repository.apache.org |
| # 2) SVN repo at dist.apache.org |
| # |
| # are to be used together. |
| |
| if ! is_github_ci; then |
| run_silent "Publish Release Candidates to the Nexus Repo..." "publish.log" \ |
| "$SELF/release-build.sh" publish-release |
| fi |
| |
| if is_dry_run; then |
| # restore the pom.xml file updated during release step |
| git restore pom.xml |
| fi |
| |
| if is_github_ci; then |
| printf "\n Release tag process is done via GITHUB actions \n" |
| exit 0 |
| fi |
| |
| if ! is_dry_run; then |
| |
| printf "\n Release candidate artifacts are built and published to repository.apache.org, dist.apache.org \n" |
| printf "\n Voting needs to be done for these artifacts for via the mailing list \n" |
| exit 0 |
| fi |
| |
| # Dry run step |
| if is_dry_run; then |
| |
| printf "\n Release candidate artifacts are built and published to repository.apache.org, dist.apache.org \n" |
| printf "\n Please delete these artifacts generated with dry run to ensure that the release scripts are generating correct artifacts. \n" |
| exit 0 |
| fi |