test: refs #6695 capture e2e erros and publish
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2025-02-03 08:21:17 +01:00
parent 9955dc73d7
commit 32dbdbddbb
1 changed files with 11 additions and 7 deletions

18
Jenkinsfile vendored
View File

@ -93,14 +93,18 @@ pipeline {
NODE_ENV = ""
CREDENTIALS = credentials('docker-registry')
}
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
cleanDockerE2E()
sh 'rm -rf salix'
sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git'
}
stages {
stage('Steup') {
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
cleanDockerE2E()
}
sh 'rm -rf salix'
sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git'
}
}
stage('Up') {
parallel{
stage('Database') {