fix: pass modules as argument to cypressParallel.sh in Jenkinsfile
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-04-07 14:00:30 +02:00
parent 6b1938c7ad
commit f3880e0a18
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}'"
}
}
}