<!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html 2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'. 3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'. --> ### _Why are the changes needed?_ <!-- Please clarify why the changes are needed. For instance, 1. If you add a feature, you can talk about the use case of it. 2. If you fix a bug, you can clarify why it is a bug. --> - Add release script - Add release guide - Add license header in some files ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request The release script has not been tested yet. Closes #874 from pan3793/asf-pub. Closes #874 5e798a96 [Cheng Pan] LICENSE header 825f2a84 [Cheng Pan] Fix rat aecc3e6b [Cheng Pan] release doc a55503c5 [Cheng Pan] Kyuubi Release Guide 2f1a25a2 [Cheng Pan] Release Guide c5a40c24 [Cheng Pan] Release script Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org>
139 lines
4.8 KiB
Bash
Executable File
139 lines
4.8 KiB
Bash
Executable File
#!/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 -o pipefail
|
|
set -e
|
|
set -x
|
|
|
|
ASF_USERNAME=${ASF_USERNAME:?"ASF_USERNAME is required"}
|
|
ASF_PASSWORD=${ASF_PASSWORD:?"ASF_PASSWORD is required"}
|
|
RELEASE_VERSION=${RELEASE_VERSION:?"RELEASE_VERSION is required"}
|
|
RELEASE_RC_NO=${RELEASE_RC_NO:?"RELEASE_RC_NO is required"}
|
|
|
|
exit_with_usage() {
|
|
local NAME=$(basename $0)
|
|
cat << EOF
|
|
Usage: $NAME <publish|finalize>
|
|
|
|
Top level targets are:
|
|
publish: Publish tarballs to SVN staging repository and jars to Nexus staging repository
|
|
finalize: Finalize the release after an RC passes vote
|
|
|
|
All other inputs are environment variables
|
|
|
|
RELEASE_VERSION - Release version, must match pom.xml and not be SNAPSHOT (e.g. 1.3.0-incubating)
|
|
RELEASE_RC_NO - Release RC number, (e.g. 0)
|
|
|
|
ASF_USERNAME - Username of ASF committer account
|
|
ASF_PASSWORD - Password of ASF committer account
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
if [[ ${RELEASE_VERSION} =~ .*-SNAPSHOT ]]; then
|
|
echo "Can not release a SNAPSHOT version: ${RELEASE_VERSION}"
|
|
exit_with_usage
|
|
exit 1
|
|
fi
|
|
|
|
RELEASE_TAG="v${RELEASE_VERSION}-rc${RELEASE_RC_NO}"
|
|
|
|
SVN_STAGING_REPO="https://dist.apache.org/repos/dist/dev/incubator/kyuubi"
|
|
SVN_RELEASE_REPO="https://dist.apache.org/repos/dist/release/incubator/kyuubi"
|
|
|
|
KYUUBI_DIR="$(cd "$(dirname "$0")"/../..; pwd)"
|
|
RELEASE_DIR="${KYUUBI_DIR}/work/release"
|
|
SVN_STAGING_DIR="${KYUUBI_DIR}/work/svn-dev"
|
|
SVN_RELEASE_DIR="${KYUUBI_DIR}/work/svn-release"
|
|
|
|
package() {
|
|
SKIP_GPG="false" RELEASE_VERSION="${RELEASE_VERSION}" $KYUUBI_DIR/build/release/create-package.sh source
|
|
SKIP_GPG="false" RELEASE_VERSION="${RELEASE_VERSION}" $KYUUBI_DIR/build/release/create-package.sh binary
|
|
}
|
|
|
|
upload_svn_staging() {
|
|
svn checkout --depth=empty "${SVN_STAGING_REPO}" "${SVN_STAGING_DIR}"
|
|
mkdir -p "${SVN_STAGING_DIR}/${RELEASE_TAG}"
|
|
rm -f "${SVN_STAGING_DIR}/${RELEASE_TAG}/*"
|
|
|
|
SRC_TGZ_FILE="kyuubi-${RELEASE_VERSION}-source.tgz"
|
|
BIN_TGZ_FILE="kyuubi-${RELEASE_VERSION}-bin.tgz"
|
|
|
|
echo "Copying release tarballs"
|
|
cp "${RELEASE_DIR}/${SRC_TGZ_FILE}" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${SRC_TGZ_FILE}"
|
|
cp "${RELEASE_DIR}/${SRC_TGZ_FILE}.asc" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${SRC_TGZ_FILE}.asc"
|
|
cp "${RELEASE_DIR}/${SRC_TGZ_FILE}.sha512" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${SRC_TGZ_FILE}.sha512"
|
|
cp "${RELEASE_DIR}/${BIN_TGZ_FILE}" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${BIN_TGZ_FILE}"
|
|
cp "${RELEASE_DIR}/${BIN_TGZ_FILE}.asc" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${BIN_TGZ_FILE}.asc"
|
|
cp "${RELEASE_DIR}/${BIN_TGZ_FILE}.sha512" "${SVN_STAGING_DIR}/${RELEASE_TAG}/${BIN_TGZ_FILE}.sha512"
|
|
|
|
svn add "${SVN_STAGING_DIR}/${RELEASE_TAG}"
|
|
|
|
echo "Uploading release tarballs to ${SVN_STAGING_DIR}/${RELEASE_TAG}"
|
|
(
|
|
cd "${SVN_STAGING_DIR}" && \
|
|
svn commit --username "${ASF_USERNAME}" --password "${ASF_PASSWORD}" --message "Apache Kyuubi ${RELEASE_TAG}"
|
|
)
|
|
echo "Kyuubi tarballs uploaded"
|
|
}
|
|
|
|
upload_nexus_staging() {
|
|
${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,spark-provided \
|
|
-s "${KYUUBI_DIR}/build/release/asf-settings.xml"
|
|
}
|
|
|
|
finalize_svn() {
|
|
echo "Moving Kyuubi tarballs to the release directory"
|
|
svn mv --username "${ASF_USERNAME}" --password "${ASF_PASSWORD}" --no-auth-cache \
|
|
--message"Apache Kyuubi ${RELEASE_VERSION}" \
|
|
"${SVN_STAGING_DIR}/${RELEASE_TAG}" "${SVN_RELEASE_REPO}/kyuubi-${RELEASE_VERSION}"
|
|
echo "Kyuubi tarballs moved"
|
|
|
|
echo "Sync'ing KEYS"
|
|
svn checkout --depth=files "${SVN_RELEASE_REPO}" "${SVN_RELEASE_DIR}"
|
|
curl "$SVN_STAGING_REPO/KEYS" > "${SVN_RELEASE_DIR}/KEYS"
|
|
svn add "${SVN_RELEASE_DIR}/KEYS"
|
|
(
|
|
cd "${SVN_RELEASE_DIR}" && \
|
|
svn commit --username "${ASF_USERNAME}" --password "${ASF_PASSWORD}" --message "Update KEYS"
|
|
)
|
|
echo "KEYS sync'ed"
|
|
}
|
|
|
|
if [[ "$1" == "publish" ]]; then
|
|
package
|
|
upload_svn_staging
|
|
upload_nexus_staging
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "$1" == "finalize" ]]; then
|
|
echo "THIS STEP IS IRREVERSIBLE! Make sure the vote has passed and you pick the right RC to finalize."
|
|
read -p "You must be a PMC member to run this step. Continue? [y/N] " ANSWER
|
|
if [ "$ANSWER" != "y" ]; then
|
|
echo "Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
finalize_svn
|
|
exit 0
|
|
fi
|
|
|
|
exit_with_usage
|