6695-docker_push_3 #1423

Merged
alexm merged 424 commits from 6695-docker_push_3 into dev 2025-02-21 12:41:37 +00:00
1 changed files with 19 additions and 5 deletions
Showing only changes of commit 1da88fd70c - Show all commits

24
Jenkinsfile vendored
View File

@ -105,6 +105,11 @@ pipeline {
sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git'
}
}
stage('Build E2E') {
steps {
sh 'docker-compose -f docker-compose.e2e.yml build e2e'
}
}
stage('Up') {
parallel{
stage('Database') {
@ -124,11 +129,6 @@ pipeline {
sh 'docker-compose -f docker-compose.e2e.yml up -d --build front'
}
}
stage('Build E2E') {
steps {
sh 'docker-compose -f docker-compose.e2e.yml build e2e'
}
}
}
}
stage('Run: Globals') {
@ -145,6 +145,20 @@ pipeline {
}
}
}
stage('Run: Specifics') {
parallel{
stage('claim') {
steps {
sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/claim/**/*.spec.js'
}
}
stage('item') {
steps {
sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/item/**/*.spec.js'
}
}
}
}
}
post {
always {