From 62515ea9e689fe58b0c2516296fae0a4aaa55915 Mon Sep 17 00:00:00 2001 From: Benjamin Charlier Date: Fri, 19 Apr 2019 12:35:02 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0984f1b6c..11e3658ec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -68,7 +68,11 @@ pipeline { sh 'git submodule update --init' sh 'cd pykeops/test && python3 unit_tests_pytorch.py' sh 'cd pykeops/test && python3 unit_tests_numpy.py' - sh 'cd keopslab/test && export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 && matlab -nodisplay -r \"r=runtests\(\'generic_test.m\'\),exit\(sum\([r\(:\).Failed]\)\)\"' + sh ''' + cd keopslab/test + export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 + matlab -nodisplay -r "r=runtests(\'generic_test.m\'),exit(sum([r(:).Failed]))" + ''' } } }