From 329e80e7ee4ff08f94d7c46f568ae85cdb4c13d7 Mon Sep 17 00:00:00 2001 From: Ulrich Mohr Date: Wed, 8 Feb 2023 14:08:09 +0100 Subject: [PATCH] enabling win unittests --- automation/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index c0ea52ae3..2cb4fd58a 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } agent { docker { - image 'fsfw-ci:d8' + image 'fsfw-ci:d9' args '--network host --sysctl fs.mqueue.msg_max=100' } } @@ -67,6 +67,7 @@ pipeline { dir(BUILDDIR_WIN) { sh 'cmake -DFSFW_OSAL=host -DFSFW_BUILD_TESTS=ON -DFSFW_TESTS_GEN_COV=OFF -DFSFW_CICD_BUILD=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../unittests/testcfg/windows/cmake/x64-windows-toolchain.cmake -GNinja ..' sh 'cmake --build . -j4' + sh 'wine64 fsfw-tests.exe' } } }