8714-devToTest #1547

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

4
Jenkinsfile vendored
View File

@ -100,7 +100,7 @@ pipeline {
env.NETWORK = "${PROJECT_NAME}-${env.BRANCH_NAME}-${env.BUILD_ID}"
docker.build('cypress-setup:latest', "-f ./test/cypress/Dockerfile .")
sh "docker-compose -p ${env.NETWORK} -f test/cypress/docker-compose.e2e.yml up -d"
sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml up -d"
def networkLowerCase = env.NETWORK.toLowerCase()
def image = docker.image('cypress-setup', , "-f ./test/cypress/Dockerfile .")
image.inside("""
@ -113,7 +113,7 @@ pipeline {
""") {
sh 'pnpm exec cypress run --browser chromium'
}
sh "docker-compose -p ${env.NETWORK} -f test/cypress/docker-compose.e2e.yml down"
sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down"
}
}
}