This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-graalvm-distro.git
The following commit(s) were added to refs/heads/main by this push:
new 6b6964d Skip GPG signing when building SkyWalking submodule
6b6964d is described below
commit 6b6964dcf3180aceef160bc3eea8beeb95057364
Author: Wu Sheng <[email protected]>
AuthorDate: Thu Feb 19 21:48:15 2026 +0800
Skip GPG signing when building SkyWalking submodule
CI runners don't have GPG keys configured. Add -Dgpg.skip=true
to the submodule install command.
Co-Authored-By: Claude Opus 4.6 <[email protected]>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 44ecbc0..3d8068a 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ init-submodules:
# Build the skywalking submodule and install artifacts to local Maven repo
# flatten-maven-plugin resolves ${revision} in installed POMs so external
projects can depend on them
build-skywalking: init-submodules
- cd skywalking && ../mvnw flatten:flatten install -DskipTests
-Dmaven.javadoc.skip=true -Dcheckstyle.skip=true
+ cd skywalking && ../mvnw flatten:flatten install -DskipTests
-Dmaven.javadoc.skip=true -Dcheckstyle.skip=true -Dgpg.skip=true
# Compile only (no tests)
compile: