27 lines
470 B
Groovy
27 lines
470 B
Groovy
folder('infra') {
|
|
displayName('Infrastructure')
|
|
description('Run Jenkins Job DSL to reconfigure master')
|
|
views {
|
|
listView('sync') {
|
|
description('File synchronization')
|
|
filterBuildQueue()
|
|
filterExecutors()
|
|
columns {
|
|
status()
|
|
name()
|
|
buildButton()
|
|
progressBar()
|
|
}
|
|
jobs {
|
|
name('sync-c8')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
job('infra/sync-c8') {
|
|
displayName('Synchronize ALT Linux repos for c8')
|
|
description('Runs synchronization script on PVE')
|
|
}
|
|
|