D
doavandoorn
Guest
Wrap your shell script in a (groovy) jenkinsfile. (See samples on the internet how to start a shell script from Jenkins) Then afterwards you can do something like this: stage('Unit Tests JUnit results collection') { steps { dir('.') { junit keepLongStdio: true, testResults: 'Tests/*.xml' } } }
Continue reading...
Continue reading...