HADOOP-16985. Handle release package related issues (#1957)

This commit is contained in:
Vinayakumar B 2020-04-14 18:01:46 +05:30
parent 4db598e0e6
commit 4d24d99e85
No known key found for this signature in database
GPG Key ID: E4EAD9C3D0215A71
2 changed files with 4 additions and 1 deletions

View File

@ -651,10 +651,12 @@ function signartifacts
big_console_header "Signing the release"
for i in ${ARTIFACTS_DIR}/*; do
run cd "${ARTIFACTS_DIR}"
for i in *; do
${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
sha512sum --tag "${i}" > "${i}.sha512"
done
run cd "${BASEDIR}"
if [[ "${ASFRELEASE}" = true ]]; then
echo "Fetching the Apache Hadoop KEYS file..."

View File

@ -56,6 +56,7 @@
<exclude>**/build/**</exclude>
<exclude>**/file:/**</exclude>
<exclude>**/SecurityAuth.audit*</exclude>
<exclude>patchprocess/**</exclude>
</excludes>
</fileSet>
</fileSets>