mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
20 lines
334 B
Groovy
20 lines
334 B
Groovy
def infra
|
|
|
|
node(){
|
|
properties([
|
|
buildDiscarder(
|
|
logRotator(
|
|
daysToKeepStr: "28",
|
|
numToKeepStr: "500")
|
|
)
|
|
])
|
|
|
|
checkout scm
|
|
|
|
infra = load '/var/lib/jenkins/workspace/itop-test-infra_master/src/Infra.groovy'
|
|
}
|
|
|
|
|
|
infra.call()
|
|
|