This needs a bit of formatting:
```
// only continue if some tests were selected
if (!tests ) {
currentBuild.result = 'SUCCESS'
return
}
else {
stage('Compilation') {
node(NODE_LINUX_GPU) {
ws('workspace/fc-compilation') {
utils.init_git()
utils.docker_run('ubuntu_build_cuda',
'build_ubuntu_gpu_cuda91_cudnn7', false)
utils.pack_lib('gpu', mx_dist_lib)
}
}
}
stage('Flakiness Check') {
node(NODE_LINUX_GPU) {
ws('workspace/fc-execution') {
utils.init_git()
unstash 'flaky tests'
utils.unpack_lib('gpu', mx_lib)
utils.docker_run('ubuntu_gpu', 'run_flakiness_checker',
false)
}
}
}
```
[ Full content available at:
https://github.com/apache/incubator-mxnet/pull/11991 ]
This message was relayed via gitbox.apache.org for [email protected]