feat: refs #6695 better stages for e2e
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-01-31 10:16:02 +01:00
parent ddf8238914
commit 9f3a7aa452
1 changed files with 8 additions and 6 deletions

14
Jenkinsfile vendored
View File

@ -73,12 +73,6 @@ pipeline {
environment {
CREDENTIALS = credentials('docker-registry')
}
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
}
stages {
// stage('Network') {
// steps {
@ -86,6 +80,14 @@ pipeline {
// // sh 'docker network create e2e_default || true'
// }
// }
stage('Setup') {
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
}
}
stage('DB') {
steps {
sh 'rm -rf salix'