aboutsummaryrefslogtreecommitdiff
path: root/openembedded-lkft
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linaro.org>2021-03-02 10:33:48 -0600
committerAníbal Limón <anibal.limon@linaro.org>2021-03-02 10:33:48 -0600
commit324779943657edb5d30f7d51feeb953f632003f0 (patch)
tree87a235aee3a879ca463d0ba2fb734194f5d72fd5 /openembedded-lkft
parentfe493a72a4d88f8d13415be8299f065a98685043 (diff)
openembedded-lkft/postbuild.groovy: Update pattern to match new lava-test-plans
Allow match new lava-test-plans output from submit_for_testing, [_submit_to_squad() ] https://qa-reports.linaro.org/testjob/4121374 lt-qcom-kernel-multimedia-integration-linux-qcomlt-776 Vs, https://qa-reports.linaro.org/testjob/4121374 lt-qcom-kernel-multimedia-integration-linux-qcomlt-776 This new regex will match both forms. See, https://ci.linaro.org/job/lt-qcom-linux-integration/776/MACHINE=apq8016-sbc,label=docker-stretch-amd64/console Signed-off-by: Aníbal Limón <anibal.limon@linaro.org> Change-Id: Ib83debf1950da456e2ddee9dbbc61b7300bde663
Diffstat (limited to 'openembedded-lkft')
-rw-r--r--openembedded-lkft/postbuild.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/openembedded-lkft/postbuild.groovy b/openembedded-lkft/postbuild.groovy
index 4f5febc550..61d70a1ddb 100644
--- a/openembedded-lkft/postbuild.groovy
+++ b/openembedded-lkft/postbuild.groovy
@@ -4,7 +4,7 @@ if (manager.build.result == hudson.model.Result.SUCCESS) {
if (desc == null) {
desc = ""
}
- pattern = ~"(${qa_server}/testjob/(\\d+))(.*)"
+ pattern = ~".*(${qa_server}/testjob/(\\d+))(.*)"
manager.build.logFile.eachLine { line ->
matcher = pattern.matcher(line)
if(matcher.matches()) {