15 lines
198 B
Groovy
15 lines
198 B
Groovy
void printDebug(msg)
|
|
{
|
|
println 'DEBUG: ' + msg
|
|
}
|
|
|
|
node('test')
|
|
{
|
|
printDebug(pwd())
|
|
|
|
stage('test')
|
|
{
|
|
sh label: 'script_label', script: 'cd openwrt; echo fuck you'
|
|
}
|
|
}
|