Commit 4e480a3a8e7fdd53b2921ccea6eb9c6b463c7b64
Committed by
Moritz Wirger
1 parent
77987571
replace debug with build
Showing
1 changed file
with
4 additions
and
4 deletions
Jenkinsfile
| @@ -17,7 +17,7 @@ timestamps { | @@ -17,7 +17,7 @@ timestamps { | ||
| 17 | } | 17 | } |
| 18 | stage('Test') | 18 | stage('Test') |
| 19 | { | 19 | { |
| 20 | - sh '''cd debug | 20 | + sh '''cd build |
| 21 | hueplusplus/test/test_HuePlusPlus --gtest_output=xml:test.xml''' | 21 | hueplusplus/test/test_HuePlusPlus --gtest_output=xml:test.xml''' |
| 22 | step([$class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1, | 22 | step([$class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1, |
| 23 | thresholds: [ | 23 | thresholds: [ |
| @@ -25,7 +25,7 @@ timestamps { | @@ -25,7 +25,7 @@ timestamps { | ||
| 25 | [$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '', unstableNewThreshold: '', unstableThreshold: ''] | 25 | [$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '', unstableNewThreshold: '', unstableThreshold: ''] |
| 26 | ], | 26 | ], |
| 27 | tools: [ | 27 | tools: [ |
| 28 | - [$class: 'GoogleTestType', deleteOutputFiles: true, failIfNotNew: true, pattern: 'debug/test.xml', skipNoTestFiles: false, stopProcessingIfError: true] | 28 | + [$class: 'GoogleTestType', deleteOutputFiles: true, failIfNotNew: true, pattern: 'build/test.xml', skipNoTestFiles: false, stopProcessingIfError: true] |
| 29 | ] | 29 | ] |
| 30 | ]) | 30 | ]) |
| 31 | } | 31 | } |
| @@ -43,8 +43,8 @@ timestamps { | @@ -43,8 +43,8 @@ timestamps { | ||
| 43 | { | 43 | { |
| 44 | warnings canComputeNew: false, canResolveRelativePaths: false, categoriesPattern: '', defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', messagesPattern: '', parserConfigurations: [[parserName: 'Doxygen', pattern: 'doxylog.txt']], unHealthy: '' | 44 | warnings canComputeNew: false, canResolveRelativePaths: false, categoriesPattern: '', defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', messagesPattern: '', parserConfigurations: [[parserName: 'Doxygen', pattern: 'doxylog.txt']], unHealthy: '' |
| 45 | sh returnStatus: true, script: 'rm doxylog.txt' | 45 | sh returnStatus: true, script: 'rm doxylog.txt' |
| 46 | - warnings canComputeNew: false, canResolveRelativePaths: false, categoriesPattern: '', defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', messagesPattern: '', parserConfigurations: [[parserName: 'GNU C Compiler 4 (gcc)', pattern: 'debug/buildlog.txt']], unHealthy: '' | ||
| 47 | - sh returnStatus: true, script: 'rm debug/buildlog.txt' | 46 | + warnings canComputeNew: false, canResolveRelativePaths: false, categoriesPattern: '', defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', messagesPattern: '', parserConfigurations: [[parserName: 'GNU C Compiler 4 (gcc)', pattern: 'build/buildlog.txt']], unHealthy: '' |
| 47 | + sh returnStatus: true, script: 'rm build/buildlog.txt' | ||
| 48 | } | 48 | } |
| 49 | } | 49 | } |
| 50 | 50 |