This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/main by this push:
new 13031ed Modify review kit
13031ed is described below
commit 13031ede96f0234bd3c80ec98c0d012a2d94a2a1
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue Sep 3 17:36:56 2024 +0200
Modify review kit
---
.github/release-review-kit.txt | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/.github/release-review-kit.txt b/.github/release-review-kit.txt
index 0ec5bc9..915dbfd 100644
--- a/.github/release-review-kit.txt
+++ b/.github/release-review-kit.txt
@@ -23,19 +23,27 @@ should work universally for all projects using
-----8<-----~( cut here )~-----8<-----
# Check out the distribution
-svn co https://dist.apache.org/repos/dist/dev/logging/... && cd $_
+wget --cut-dirs=6 \
+ --no-host-directories \
+ --no-parent \
+ --recursive \
+
https://dist.apache.org/repos/dist/dev/logging/@PROJECT_NAME@/@PROJECT_VERSION@
# Verify checksums
-shasum --check *.sha512
+sha512sum --check *.sha512
# Verify signatures
-wget -O - https://downloads.apache.org/logging/KEYS | gpg --import
+#
+# If you didn't import the KEYS previously, run:
+# wget -O - https://downloads.apache.org/logging/KEYS | gpg --import
for sigFile in *.asc; do gpg --verify $sigFile; done
-# Verify reproduciblity
+# Verify reproducibility (only Linux/MacOS X)
umask 0022
unzip *-src.zip -d src
cd src
-export NEXUS_REPO=https://repository.apache.org/content/...
-sh mvnw -Prelease verify artifact:compare -Dreference.repo=$NEXUS_REPO
-# If preferred, augment `mvnw` with `-DskipTests` to speed things up
+export
NEXUS_REPO=https://repository.apache.org/content/repositories/orgapachelogging-<CHECK>
+sh mvnw -Prelease clean verify artifact:compare -Dreference.repo=$NEXUS_REPO
+
+# Run tests only (Windows)
+sh mvnw -Prelease clean verify artifact:compare
\ No newline at end of file