From 54e3b9970895d00f2fd94dd23af54aa10eb73825 Mon Sep 17 00:00:00 2001 From: Ulrich Mohr Date: Fri, 18 Feb 2022 11:38:23 +0100 Subject: [PATCH] enable unittests in Jenkinsfile --- automation/Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index bd5320f1..ba7a2da4 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -25,9 +25,8 @@ pipeline { steps { dir(BUILDDIR_LINUX) { sh 'cmake ..' - //to be used when unittests are merged... - //sh 'cmake --build -t eive-unittests . -j' - //sh './eive-unittests' + sh 'cmake --build -t eive-unittests . -j' + sh './eive-unittests' } } }