| #!/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. |
| |
| set -eu |
| |
| for cmd in git gh gpg svn; do |
| if ! command -v ${cmd} &> /dev/null; then |
| echo "This script requires '${cmd}' but it's not installed. Aborting." |
| exit 1 |
| fi |
| done |
| |
| SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
| SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)" |
| |
| if [ "$#" -ne 2 ]; then |
| echo "Usage: $0 <version> <rc>" |
| echo " e.g.: $0 0.1.0 0" |
| exit 1 |
| fi |
| |
| # TODO: possibly use semantic versioning to auto generate the version? |
| version=$1 |
| rc=$2 |
| |
| : "${RELEASE_DEFAULT:=1}" |
| : "${RELEASE_PULL:=${RELEASE_DEFAULT}}" |
| : "${RELEASE_PUSH_TAG:=${RELEASE_DEFAULT}}" |
| : "${RELEASE_SIGN:=${RELEASE_DEFAULT}}" |
| : "${RELEASE_UPLOAD:=${RELEASE_DEFAULT}}" |
| |
| cd "${SOURCE_TOP_DIR}" |
| |
| if [ "${RELEASE_PULL}" -gt 0 ] || [ "${RELEASE_PUSH_TAG}" -gt 0 ]; then |
| git_origin_url="$(git remote get-url origin)" |
| if [ "${git_origin_url}" != "git@github.com:apache/iceberg-cpp.git" ]; then |
| echo "This script must be ran with working copy of apache/iceberg-cpp." |
| echo "The origin's URL: ${git_origin_url}" |
| exit 1 |
| fi |
| fi |
| |
| if [ "${RELEASE_PULL}" -gt 0 ]; then |
| echo "Ensure using the latest commit" |
| git checkout main |
| git pull --rebase --prune |
| fi |
| |
| rc_tag="v${version}-rc${rc}" |
| if [ "${RELEASE_PUSH_TAG}" -gt 0 ]; then |
| echo "Tagging for RC: ${rc_tag}" |
| git tag -a -m "${version} RC${rc}" "${rc_tag}" |
| git push origin "${rc_tag}" |
| fi |
| |
| rc_hash="$(git rev-list --max-count=1 "${rc_tag}")" |
| |
| id="apache-iceberg-cpp-${version}" |
| rc_id="${id}-rc${rc}" |
| tar_gz="${id}.tar.gz" |
| |
| if [ "${RELEASE_SIGN}" -gt 0 ]; then |
| git_origin_url="$(git remote get-url origin)" |
| repository="${git_origin_url#*github.com?}" |
| repository="${repository%.git}" |
| |
| echo "Looking for GitHub Actions workflow on ${repository}:${rc_tag}" |
| run_id="" |
| while [ -z "${run_id}" ]; do |
| echo "Waiting for run to start..." |
| run_id=$(gh run list \ |
| --repo "${repository}" \ |
| --workflow=rc.yml \ |
| --json 'databaseId,event,headBranch,status' \ |
| --jq ".[] | select(.event == \"push\" and .headBranch == \"${rc_tag}\") | .databaseId") |
| sleep 1 |
| done |
| |
| echo "Found GitHub Actions workflow with ID: ${run_id}" |
| gh run watch --repo "${repository}" --exit-status "${run_id}" |
| |
| mkdir -p "${rc_id}" |
| |
| echo "Downloading .tar.gz and .sha512 from GitHub Releases" |
| gh release download "${rc_tag}" \ |
| --dir "${rc_id}" \ |
| --pattern "${tar_gz}" \ |
| --pattern "${tar_gz}.sha512" \ |
| --repo "${repository}" \ |
| --skip-existing |
| |
| echo "Signing tar.gz" |
| cd "${rc_id}" |
| gpg --armor --output "${tar_gz}.asc" --detach-sig "${tar_gz}" |
| echo "Add signature to GitHub release" |
| gh release upload "${rc_tag}" \ |
| --clobber \ |
| --repo "${repository}" \ |
| "${tar_gz}".asc |
| cd .. |
| fi |
| |
| if [ "${RELEASE_UPLOAD}" -gt 0 ]; then |
| echo "Uploading to ASF dist/dev..." |
| svn import "${rc_id}" "https://dist.apache.org/repos/dist/dev/iceberg/${rc_id}" -m "Apache Iceberg C++ ${version} RC${rc}" |
| fi |
| |
| echo "Draft email for dev@iceberg.apache.org mailing list" |
| echo "" |
| echo "---------------------------------------------------------" |
| cat <<MAIL |
| To: dev@iceberg.apache.org |
| Subject: [VOTE][C++] Release Apache Iceberg C++ ${version} RC${rc} |
| |
| Hi, |
| |
| I would like to propose the following release candidate (RC${rc}) of |
| Apache Iceberg C++ ${version}. |
| |
| This release candidate is based on commit: |
| ${rc_hash} [1] |
| |
| The source release RC${rc} is hosted at [2]. |
| |
| Please download, verify checksums and signatures, run the unit tests, |
| and vote on the release. See [3] for how to validate a release candidate. |
| |
| The vote will be open for at least 72 hours. |
| |
| [ ] +1 Release this as Apache Iceberg C++ ${version} |
| [ ] +0 |
| [ ] -1 Do not release this as Apache Iceberg C++ ${version} because... |
| |
| [1]: https://github.com/apache/iceberg-cpp/tree/${rc_hash} |
| [2]: https://dist.apache.org/repos/dist/dev/iceberg/apache-iceberg-cpp-${version}-rc${rc} |
| [3]: https://github.com/apache/iceberg-cpp/blob/main/dev/release/README.md#verify |
| MAIL |
| echo "---------------------------------------------------------" |