8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
1 changed files with 7 additions and 7 deletions
Showing only changes of commit d33bb451a3 - Show all commits

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'
}
}