1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
#!/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
SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)"
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <rc>"
echo " e.g.: $0 1"
exit 1
fi
rc=$1
: "${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/arrow-go.git" ]; then
echo "This script must be ran with working copy of apache/arrow-go."
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
version=$(grep -o '^const PkgVersion = ".*"' "arrow/doc.go" |
sed \
-e 's/^const PkgVersion = "//' \
-e 's/"$//')
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-arrow-go-${version}"
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}"
echo "Downloading .tar.gz from GitHub Releases"
gh release download "${rc_tag}" \
--dir . \
--pattern "${tar_gz}" \
--repo "${repository}" \
--skip-existing
echo "Signing tar.gz and creating checksums"
gpg --armor --output "${tar_gz}.asc" --detach-sig "${tar_gz}"
fi
if [ "${RELEASE_UPLOAD}" -gt 0 ]; then
echo "Uploading signature"
gh release upload "${rc_tag}" \
--clobber \
--repo "${repository}" \
"${tar_gz}.asc"
fi
echo "Draft email for dev@arrow.apache.org mailing list"
echo ""
echo "---------------------------------------------------------"
cat <<MAIL
To: dev@arrow.apache.org
Subject: [VOTE][Go] Release Apache Arrow Go ${version} RC${rc}
Hi,
I would like to propose the following release candidate (RC${rc}) of
Apache Arrow Go version ${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 Arrow Go ${version}
[ ] +0
[ ] -1 Do not release this as Apache Arrow Go ${version} because...
[1]: https://github.com/apache/arrow-go/tree/${rc_hash}
[2]: https://github.com/apache/arrow-go/releases/${rc_tag}
[3]: https://github.com/apache/arrow-go/blob/main/dev/release/README.md#verify
MAIL
echo "---------------------------------------------------------"
|