mirror of
https://github.com/valitydev/gentoo-overlay.git
synced 2024-11-06 01:45:19 +00:00
12 lines
213 B
Groovy
12 lines
213 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
build('gentoo-overlay', 'gentoo') {
|
|
checkoutRepo()
|
|
runStage('RepoMan scours the neighborhood') {
|
|
sh 'repoman -v'
|
|
}
|
|
runStage('Overlint') {
|
|
sh 'overlint-cli .'
|
|
}
|
|
}
|