refs #5739 feat: try run test back and front
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2024-01-15 09:00:38 +01:00
parent 570d6b63b0
commit 574fad7431
2 changed files with 3 additions and 2 deletions

1
Jenkinsfile vendored
View File

@ -43,6 +43,7 @@ pipeline {
sh "docker network ls | grep testing-salix-5739 | awk '{print \$1}' | xargs -r docker network rm"
sh "docker-compose -p testing-${env.STACK_NAME} -f docker-compose.test.yml rm --stop"
sh "docker-compose -p testing-${env.STACK_NAME} -f docker-compose.test.yml build --force-rm db"
sh "docker-compose -p testing-${env.STACK_NAME} -f docker-compose.test.yml build back" //Front depends on this image
}
}
stage('Test') {

View File

@ -27,8 +27,8 @@ services:
build:
context: .
dockerfile: front/Dockerfile.test
depends_on:
- back
# depends_on:
# - back
back:
image: back
restart: always