Compare commits

..

No commits in common. "1bb0ca011ded2864d674b840491e5fa946cdde37" and "9f2eed96a9fe0cdd668f7c6bc4a7a95252574085" have entirely different histories.

5 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
#!/usr/bin/env groovy
void call(Map config = [:], Closure body = { }) {
Map defaults = [
testRequires: 'Makefile',
testCmd: 'make all',
stepName: 'Test'
]
runConfig = defaults + config
stage(runConfig.stepName) {
printBanner(runConfig.stepName)
body()
}
}