diff --git a/pipelines/PAD2 Repetitorium/Praktikum 3/jenkinsfile.groovy b/pipelines/PAD2 Repetitorium/Praktikum 3/jenkinsfile.groovy index 7f8f0f2ddf1b442854f4585a46c6ea0f40dbf5ef..7ff52a98417a56d372fb079ef8cf33f3fcb78697 100644 --- a/pipelines/PAD2 Repetitorium/Praktikum 3/jenkinsfile.groovy +++ b/pipelines/PAD2 Repetitorium/Praktikum 3/jenkinsfile.groovy @@ -68,41 +68,4 @@ node { unstableThresholdTotal: '0' ) } - stage('Pull and compile cppunit tests') { - sh( - ''' - mkdir git - ''' - ) - dir('git') { - git( - credentialsId: 'codegit', - url: 'https://code.fbi.h-da.de/SS18-REP-PAD2/UnitTests/Praktikum3.git', - changelog: false - ) - } - sh( - ''' - cp -r git/* ./ - ''' - ) - sh( - ''' - cmake ./ - make - ''' - ) - } - stage('Run cppunit tests') { - sh('./cppunitTemplate') - xunit( - thresholds: [ - skipped(failureThreshold: '0'), - failed(failureThreshold: '0') - ], - tools: [CppUnit( - pattern: 'testResults.xml', - )] - ) - } } \ No newline at end of file