ci: refs #6695 update Jenkinsfile remove unnecessary environment variables
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-20 07:52:56 +01:00
parent 3d6cf29afa
commit f999304ea8
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -92,6 +92,7 @@ pipeline {
environment {
NODE_ENV = ""
CREDENTIALS = credentials('docker-registry')
CYPRESS_CACHE = "${WORKSPACE}/.cypress-cache"
}
steps {
script {
@ -107,7 +108,7 @@ pipeline {
-e TZ=Europe/Madrid
-e DOCKER=true
-e CI=true
-v "$HOME/.cypress-cache":/home/node/.cache/Cypress
-v $CYPRESS_CACHE:/home/node/.cache/Cypress \
""".stripIndent()) {
sh 'pnpm exec cypress run --browser chromium'
}