test: refs #6695 try handle e2e erros and publish
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-03 08:29:49 +01:00
parent 32dbdbddbb
commit db6783e9d4
1 changed files with 24 additions and 12 deletions

36
Jenkinsfile vendored
View File

@ -129,10 +129,21 @@ pipeline {
steps { steps {
script { script {
sh 'docker-compose -f docker-compose.e2e.yml up e2e' sh 'docker-compose -f docker-compose.e2e.yml up e2e'
def result = sh(script: 'docker-compose -f docker-compose.e2e.yml ps -q e2e | xargs docker inspect -f "{{.State.ExitCode}}"', returnStatus: true) // Obtener el ID del contenedor e2e
sh 'docker cp $(docker-compose -f docker-compose.e2e.yml ps -q e2e):/app/test/cypress/reports ./test/cypress/' def containerId = sh(script: "docker-compose -f docker-compose.e2e.yml ps -q e2e", returnStdout: true).trim()
if (result != 0) { if (containerId) {
error("Cypress E2E tests failed with exit code: ${result}") // Obtener el exit code del contenedor
def exitCode = sh(script: "docker inspect -f '{{.State.ExitCode}}' ${containerId}", returnStdout: true).trim()
// Copiar reportes desde el contenedor a Jenkins
sh "docker cp ${containerId}:/app/test/cypress/reports ./test/cypress/"
// Si hubo errores en Cypress, fallar el build
if (exitCode != '0') {
error("Cypress E2E tests failed with exit code: ${exitCode}")
}
} else {
error("No se encontró el contenedor e2e.")
} }
} }
} }
@ -140,14 +151,15 @@ pipeline {
} }
post { post {
always { always {
publishHTML([ // sh 'docker cp $(docker-compose -f docker-compose.e2e.yml ps -q e2e):/app/test/cypress/reports ./test/cypress/' // in run
allowMissing: true, // publishHTML([
alwaysLinkToLastBuild: true, // allowMissing: true,
keepAll: true, // alwaysLinkToLastBuild: true,
reportDir: 'test/cypress/reports', // keepAll: true,
reportFiles: '*.html', // reportDir: 'test/cypress/reports',
reportName: 'Cypress Mochawesome Report' // reportFiles: '*.html',
]) // reportName: 'Cypress Mochawesome Report'
// ])
cleanDockerE2E() cleanDockerE2E()
} }
} }