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 11 additions and 2 deletions
Showing only changes of commit 662d679ad1 - Show all commits

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') {