feat: refs #6695 add cypress-cache volume to docker-compose.e2e.yml
gitea/salix-front/pipeline/pr-dev Build queued... Details

This commit is contained in:
Alex Moreno 2025-02-13 09:44:21 +01:00
parent 56db3ffc51
commit 2e0b4a5322
1 changed files with 18 additions and 16 deletions

2
Jenkinsfile vendored
View File

@ -198,6 +198,7 @@ def runTestsInParallel(int numParallelGroups) {
groups.eachWithIndex { group, index -> groups.eachWithIndex { group, index ->
tasks["parallel_group_${index + 1}"] = { tasks["parallel_group_${index + 1}"] = {
stage("Parallel Group ${index + 1}") {
script { script {
group.each { testFolder -> group.each { testFolder ->
def folderName = testFolder.replaceAll('test/cypress/integration/', '').replaceAll('/', '') def folderName = testFolder.replaceAll('test/cypress/integration/', '').replaceAll('/', '')
@ -221,6 +222,7 @@ def runTestsInParallel(int numParallelGroups) {
} }
} }
} }
}
parallel tasks parallel tasks
} }