fix: pass modules as argument to cypressParallel.sh in Jenkinsfile
gitea/salix-front/pipeline/head Build queued... Details

This commit is contained in:
Alex Moreno 2025-04-07 14:01:37 +02:00
parent d6363e4b45
commit 3549f172d6
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -128,7 +128,7 @@ pipeline {
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
echo "E2E MODULES: ${modules}"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
sh "sh test/cypress/docker/cypressParallel.sh 1"
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
}
}
}