From 6d7199b2ff0d1e90188b05c04f2f6eac93260558 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Feb 2025 13:10:12 +0100 Subject: [PATCH] fix: refs #6695 try parallel --- Jenkinsfile | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 692980a09..8e2080672 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -183,20 +183,28 @@ def cleanDockerE2E() { } def runTestsInParallel() { - def integrationTests = sh(script: "ls -d test/cypress/integration/*/", returnStdout: true).trim().split('\n') + // def integrationTests = sh(script: "ls -d test/cypress/integration/*/ || echo ''", returnStdout: true).trim().split('\n') + def integrationTests = ['test/cypress/integration/claim/', 'test/cypress/integration/client/'] def tasks = [:] - // Crear tareas para cada carpeta de tests integrationTests.each { testFolder -> - def folderName = testFolder.replaceAll('test/cypress/integration/', '').replaceAll('/', '') - tasks["e2e_${folderName}"] = { - sh "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d back db" - sh "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d front" - sh "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up e2e " + - "command=\"sh -c 'pnpm exec cypress install && pnpm exec cypress run --browser chromium --spec test/cypress/integration/${folderName}/**/*.spec.js'\"" + if (testFolder.trim()) { // Evita procesar líneas vacías + def folderName = testFolder.replaceAll('test/cypress/integration/', '').replaceAll('/', '') + folderName = folderName.replaceAll('[^a-zA-Z0-9_-]', '') // Seguridad en nombres de red + tasks["e2e_${folderName}"] = { + sh """ + docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml pull + docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d back vn-database + docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d front + docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up e2e \ + command="sh -c 'pnpm exec cypress install && pnpm exec cypress run --browser chromium --spec test/cypress/integration/${folderName}/**/*.spec.js'" \ + --abort-on-container-exit + """ + } } } parallel tasks } +