owrt_build_script/Jenkinsfile
psycho 2d235db2ad init
initial commit
2020-08-11 18:05:36 +02:00

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'
}
}