ci: refs #6695 streamline Cypress E2E test execution in Jenkinsfile and improve error handling
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-19 08:19:54 +01:00
parent ecd278946e
commit 736415c876
1 changed files with 12 additions and 11 deletions

23
Jenkinsfile vendored
View File

@ -111,17 +111,18 @@ pipeline {
steps {
script {
sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml up -d"
def containerId = sh(script: """
docker run --network \${env.NETWORK}_e2e-network \
-e TZ=Europe/Madrid \
-e DOCKER=true \
-e CI=true \
-v \\\$(pwd):/app \
-w /app \
cypress-setup:latest \
sh -c "while [ ! -d node_modules/cypress ]; do sleep 1; done && pnpm exec cypress run --browser chromium"
""", returnStdout: true).trim()
checkErrors(containerId)}
def containerId = sh(script: '''
docker run --network ${env.NETWORK}_e2e-network \
-e TZ=Europe/Madrid \
-e DOCKER=true \
-e CI=true \
-v ${PWD}:/app \
-w /app \
cypress-setup:latest \
sh -c "while [ ! -d node_modules/cypress ]; do sleep 1; done && pnpm exec cypress run --browser chromium"
''', returnStdout: true).trim()
checkErrors(containerId)
}
}
}
}