rombert commented on code in PR #53:
URL: https://github.com/apache/sling-ide-tooling/pull/53#discussion_r2368044102
##########
Jenkinsfile:
##########
@@ -34,7 +34,8 @@ def generateStages(String os, def mvnVersion, def
javaVersion) {
def prefix = isWindows ? "win" : "linux"
def nodeLabel = isWindows ? "Windows" : "ubuntu"
- String goals = (!isWindows && shouldDeploy()) ? 'clean deploy' : 'clean
install'
+ boolean shouldDeployInThisBranch = (!isWindows && shouldDeploy())
+ String goals = shouldDeployInThisBranch ? 'clean deploy' : 'clean install'
Review Comment:
@kwin - I am not sure we need this. We deploy the p2 update site via SSH
upload but I don't think the shared Maven artifacts are used anywhere.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]