You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2023/01/13 14:35:12 UTC

[sling-tooling-jenkins] branch feature/SLING-11671 updated: SLING-11671 - Jenkins: allow running Sling Starter ITs with a given module based on the Sling module descriptor

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-11671
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git


The following commit(s) were added to refs/heads/feature/SLING-11671 by this push:
     new a601d28  SLING-11671 - Jenkins: allow running Sling Starter ITs with a given module based on the Sling module descriptor
a601d28 is described below

commit a601d288a7f9c77e40e787b8645fd7ea845191e8
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Jan 13 15:35:03 2023 +0100

    SLING-11671 - Jenkins: allow running Sling Starter ITs with a given module based on the Sling module descriptor
    
    Don't run the module's unit tests (attempt #3)
---
 vars/slingOsgiBundleBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index 8dfba76..3bc6059 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -135,7 +135,7 @@ def call(Map params = [:]) {
                                     withMaven(maven: globalConfig.mvnVersion,
                                         jdk: jenkinsJdkLabel(referenceJdkVersion, globalConfig),
                                         publisherStrategy: 'EXPLICIT') {
-                                            String mvnCommand = "mvn -U -B -e clean verify -Dtest='NoSuchTest$Certainly' -DfailIfNoTests=false -Dstarter-its.starter.version=${starterVersion} -Dstarter-its.startTimeoutSeconds=120"
+                                            String mvnCommand = "mvn -U -B -e clean verify -Dtest='NoSuchTest\$Certainly' -DfailIfNoTests=false -Dstarter-its.starter.version=${starterVersion} -Dstarter-its.startTimeoutSeconds=120"
                                             try {
                                                 if (isUnix()) {
                                                     sh mvnCommand