Changes in / [5157ba7:42a36d9]
- Files:
-
- 2 edited
-
Jenkins/FullBuild (modified) (2 diffs)
-
Jenkinsfile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
r5157ba7 r42a36d9 17 17 18 18 parallel ( 19 gcc_6_x64: { trigger_build( 'gcc-6', 'x64' ) },20 gcc_6_x86: { trigger_build( 'gcc-6', 'x86' ) },21 gcc_5_x64: { trigger_build( 'gcc-5', 'x64' ) },22 gcc_5_x86: { trigger_build( 'gcc-5', 'x86' ) },23 clang_x64: { trigger_build( 'clang', 'x64' ) },24 clang_x86: { trigger_build( 'clang', 'x86' ) },19 gcc_6_x64: { trigger_build( 'gcc-6', 'x64', true ) }, 20 gcc_6_x86: { trigger_build( 'gcc-6', 'x86', true ) }, 21 gcc_5_x64: { trigger_build( 'gcc-5', 'x64', false ) }, 22 gcc_5_x86: { trigger_build( 'gcc-5', 'x86', false ) }, 23 clang_x64: { trigger_build( 'clang', 'x64', false ) }, 24 clang_x86: { trigger_build( 'clang', 'x86', false ) }, 25 25 ) 26 26 } … … 76 76 [$class: 'BooleanParameterValue', \ 77 77 name: 'Publish', \ 78 value: true], \78 value: publish], \ 79 79 [$class: 'BooleanParameterValue', \ 80 80 name: 'Silent', \ -
Jenkinsfile
r5157ba7 r42a36d9 170 170 build_stage('Publish') { 171 171 172 if( Settings.Publish &&!Settings.RunBenchmark ) { echo 'No results to publish!!!' }172 if( !Settings.RunBenchmark ) { echo 'No results to publish!!!' } 173 173 174 174 def groupCompile = new PlotGroup('Compilation', 'seconds', true) … … 433 433 } 434 434 435 def do_plot(boolean new_data, String file, PlotGroup group, String title) { 436 437 if(new_data) { 438 echo "Publishing new data" 439 } 440 441 def series = new_data ? [] : [[ 435 def do_plot(boolean silent, String file, PlotGroup group, String title) { 436 437 def series = silent ? [] : [[ 442 438 file: "${file}.csv", 443 439 exclusionValues: '',
Note:
See TracChangeset
for help on using the changeset viewer.