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

This commit is contained in:
Alex Moreno 2025-02-06 09:41:12 +01:00
parent a4eed47df6
commit 662d679ad1
1 changed files with 11 additions and 2 deletions

13
Jenkinsfile vendored
View File

@ -101,8 +101,17 @@ pipeline {
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
cleanDockerE2E()
}
sh 'rm -rf salix'
sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git'
// sh 'rm -rf salix'
// sh 'git clone dev https://gitea.verdnatura.es/verdnatura/salix.git'
def repoFolder = "salix"
if (fileExists(repoFolder)) {
dir(repoFolder) {
sh 'git pull'
}
} else {
sh "git clone dev https://gitea.verdnatura.es/verdnatura/salix.git"
}
}
}
stage('Up') {