8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
1 changed files with 8 additions and 9 deletions
Showing only changes of commit 12edc10272 - Show all commits

17
Jenkinsfile vendored
View File

@ -100,18 +100,17 @@ pipeline {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
cleanDockerE2E()
def repoFolder = "salix"
if (fileExists(repoFolder)) {
dir(repoFolder) {
sh 'git pull'
}
} else {
sh "git clone dev 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') {