test: refs #6695 e2e fix network
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-10 07:54:51 +01:00
parent 30b0630c88
commit 062389626e
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -110,7 +110,7 @@ pipeline {
// sh "git clone https://gitea.verdnatura.es/verdnatura/salix.git"
// }
sh "pnpm exec cypress install"
sh "docker network create ${env.NETWORK}|| true"
sh "docker network create ${env.NETWORK} || true"
}
// sh 'rm -rf salix'
// sh 'git clone dev https://gitea.verdnatura.es/verdnatura/salix.git'
@ -201,7 +201,7 @@ def cleanDockerE2E() {
script {
// sh 'docker rm -f vn-database || true'
// sh 'docker rm -f salix_e2e || true'
sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down || true"
sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down --volumes || true"
sh "docker network rm ${env.NETWORK} || true"
}
}