Remove jenkins dsl

This commit is contained in:
cghislai 2021-08-13 00:06:38 +02:00
parent 0cc73dfb46
commit dcc151923a
3 changed files with 1 additions and 45 deletions

View File

@ -1,5 +1,5 @@
.idea/
e2e/
jenkins/
../../../valuya/cluster/valuya-cluster-state/charlyghislaindotcom/jenkins/
node_modules/
src/

View File

@ -1 +0,0 @@
folder('charlyghislaindotcom')

View File

@ -1,43 +0,0 @@
multibranchPipelineJob('charlyghislaindotcom/charlyghislaindotcom') {
branchSources {
branchSource {
source {
git {
id('charlyghislaindotcom-front_repo') // IMPORTANT: use a constant and unique identifier
remote('ssh://git@gitea.charlyghislain.com:2022/cghislai/charlyghislaindotcom.git')
credentialsId('jenkins-jenkins-ssh-key')
traits {
gitBranchDiscovery()
wipeWorkspaceTrait()
}
}
}
strategy {
namedBranchesDifferent {
namedExceptions {
named {
name('master')
props {
suppressAutomaticTriggering()
}
}
}
}
}
}
}
triggers {
periodic(30)
}
orphanedItemStrategy {
discardOldItems {
daysToKeep(7)
}
}
factory {
workflowBranchProjectFactory {
scriptPath('Jenkinsfile')
}
}
}