From: George Joseph Date: Tue, 17 Jul 2018 15:41:40 +0000 (-0600) Subject: CI: Fix regex in daily and ref_debug jobs X-Git-Tag: 15.6.0-rc1~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd8011f1aa0fb5caa9fcd14f648325adce964a88;p=thirdparty%2Fasterisk.git CI: Fix regex in daily and ref_debug jobs Change-Id: Icf2e67818b2155a158d2390b138613e1f653ea92 --- diff --git a/tests/CI/periodics-daily.jenkinsfile b/tests/CI/periodics-daily.jenkinsfile index c8790404c3..8f5365875c 100644 --- a/tests/CI/periodics-daily.jenkinsfile +++ b/tests/CI/periodics-daily.jenkinsfile @@ -66,7 +66,7 @@ pipeline { def groupDir = testGroup.dir def groupTestcmd = testGroup.testcmd def groupRunTestsuiteOptions = testGroup.runTestsuiteOptions - def testsuiteUrl = env.GIT_URL.replaceAll(/\/(Security-)?[^\/]+$/, "/\$1testsuite") + def testsuiteUrl = env.GIT_URL.replaceAll(/\/[^\/]+$/, "/testsuite") parallelTasks[groupName] = { stage (groupName) { diff --git a/tests/CI/ref_debug.jenkinsfile b/tests/CI/ref_debug.jenkinsfile index 45a1c6ad3b..d0c42eab4d 100644 --- a/tests/CI/ref_debug.jenkinsfile +++ b/tests/CI/ref_debug.jenkinsfile @@ -65,7 +65,7 @@ pipeline { def groupName = testGroup.name def groupDir = testGroup.dir def groupTestcmd = testGroup.testcmd - def testsuiteUrl = env.GIT_URL.replaceAll(/\/[^\/]+$/, "/\$1testsuite") + def testsuiteUrl = env.GIT_URL.replaceAll(/\/[^\/]+$/, "/1testsuite") parallelTasks[groupName] = { stage (groupName) {