fix: refs #6695 update Jenkinsfile to source cypressParallel.sh correctly
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2025-02-26 15:02:50 +01:00
parent 8a5025ba62
commit 3abb713cd5
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -117,8 +117,8 @@ pipeline {
sh "docker-compose ${env.COMPOSE_PARAMS} up -d" sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") { image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") {
// sh 'cypress run --browser chromium || true' // sh 'cypress run --browser chromium || true'
sh ''' sh '''#!/bin/bash
. test/cypress/cypressParallel.sh source test/cypress/cypressParallel.sh
cypressParallel 2 || true cypressParallel 2 || true
''' '''
} }