ci: refs #6695 try
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-19 12:43:30 +01:00
parent 45f98ab25d
commit d33bb451a3
1 changed files with 7 additions and 7 deletions

14
Jenkinsfile vendored
View File

@ -104,13 +104,13 @@ pipeline {
def networkLowerCase = env.NETWORK.toLowerCase()
def image = docker.build('cypress-setup:latest', '-f ./test/cypress/Dockerfile .')
image.inside("""
--network ${networkLowerCase}_default \
-e TZ=Europe/Madrid \
-e DOCKER=true \
-e CI=true \
-v .:/app \
-w /app \
""") {
--network ${networkLowerCase}_default
-e TZ=Europe/Madrid
-e DOCKER=true
-e CI=true
-v .:/app
-w /app
""".stripIndent()) {
sh 'pnpm exec cypress run --browser chromium'
}
}