adds build step to Jenkinsfile
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Failing after 6m26s Details

This commit is contained in:
Eyck-Alexander Jentzsch 2024-05-22 15:21:57 +02:00
parent 92283be000
commit aa69088189
1 changed files with 6 additions and 4 deletions

10
Jenkinsfile vendored
View File

@ -25,11 +25,13 @@ pipeline {
} }
stages { stages {
stage("Info"){ stage("build TGC-ISS"){
steps { steps {
sh 'pwd' sh '''
sh 'ls -la' conan profile new --detect --force default
sh 'ls -la ..' cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=OFF -DWITH_TCC=OFF -DWITH_LLVM=OFF
cmake --build build -j
'''
} }
} }