Files
jenkins-pipelines/jobs-dsl/jobs/Docs/Eisen/doxygen.groovy
2023-12-18 17:01:12 +03:00

30 lines
722 B
Groovy

pipelineJob('Docs/Eisen/doxygen') {
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_HTTP}")
}
branch('master')
}
}
scriptPath('pipelines/Docs/Eisen/doxygen.groovy')
}
}
properties {
disableConcurrentBuilds()
}
parameters {
string { name('BRANCH')
defaultValue('master')
}
booleanParam { name('onlyUpdatePipeline')
defaultValue(false)
}
}
}