From aa69088189241f3f8bf57017db4e08276ba64156 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Wed, 22 May 2024 15:21:57 +0200 Subject: [PATCH] adds build step to Jenkinsfile --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f0fa2e5..410dc10 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,11 +25,13 @@ pipeline { } stages { - stage("Info"){ + stage("build TGC-ISS"){ steps { - sh 'pwd' - sh 'ls -la' - sh 'ls -la ..' + sh ''' + conan profile new --detect --force default + cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=OFF -DWITH_TCC=OFF -DWITH_LLVM=OFF + cmake --build build -j + ''' } }