From 84961dda4952041fd791875820bf0088eb5fe301 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 30 Jan 2024 19:41:09 +0100 Subject: [PATCH] build: refs #5483 test workers increased to 6, test rocket notification --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 37f1abc9e..20b64de0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,7 +59,7 @@ pipeline { stage('Frontend') { steps { nodejs('node-v20') { - sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=4' + sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=6' } } } @@ -130,7 +130,7 @@ pipeline { success { script { if (env.RUN_SOURCE == 'git' - && ['master', 'test'].contains(env.BRANCH_NAME)) { + && ['master', 'test', 'dev'].contains(env.BRANCH_NAME)) { String message = env.GIT_COMMIT_MSG int index = message.indexOf('\n') if (index != -1)