Changeset ae151cf for Jenkins/FullBuild


Ignore:
Timestamp:
Oct 2, 2022, 10:00:43 PM (6 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
815943f
Parents:
f704974 (diff), f92e7b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/FullBuild

    rf704974 rae151cf  
    1818
    1919                                parallel (
    20                                         gcc_08_x86_new: { trigger_build( 'gcc-10',  'x86' ) },
    21                                         gcc_07_x86_new: { trigger_build( 'gcc-9',   'x86' ) },
    22                                         gcc_10_x64_new: { trigger_build( 'gcc-10',  'x64' ) },
    23                                         gcc_09_x64_new: { trigger_build( 'gcc-9',   'x64' ) },
    24                                         gcc_08_x64_new: { trigger_build( 'gcc-8',   'x64' ) },
    25                                         gcc_07_x64_new: { trigger_build( 'gcc-7',   'x64' ) },
    26                                         gcc_06_x64_new: { trigger_build( 'gcc-6',   'x64' ) },
    27                                         clang_x64_new:  { trigger_build( 'clang',   'x64' ) },
     20                                        gcc_08_x86_new: { trigger_build( 'gcc-10',  'x86', false ) },
     21                                        gcc_07_x86_new: { trigger_build( 'gcc-9',   'x86', false ) },
     22                                        gcc_10_x64_new: { trigger_build( 'gcc-10',  'x64', false ) },
     23                                        gcc_09_x64_new: { trigger_build( 'gcc-9',   'x64', false ) },
     24                                        gcc_08_x64_new: { trigger_build( 'gcc-8',   'x64', false ) },
     25                                        gcc_07_x64_new: { trigger_build( 'gcc-7',   'x64', false ) },
     26                                        gcc_06_x64_new: { trigger_build( 'gcc-6',   'x64', false ) },
     27                                        clang_x64_new:  { trigger_build( 'clang',   'x64', true ) },
    2828                                )
    2929                        }
     
    6767//===========================================================================================================
    6868
    69 def trigger_build(String cc, String arch) {
     69def trigger_build(String cc, String arch, boolean doc) {
    7070        // Randomly delay the builds by a random amount to avoid hitting the SC server to hard
    7171        sleep(time: 5 * Math.random(), unit:"MINUTES")
     
    9292                        [$class: 'BooleanParameterValue',               \
    9393                          name: 'BuildDocumentation',           \
    94                           value: true],                                         \
     94                          value: doc],                                  \
    9595                        [$class: 'BooleanParameterValue',               \
    9696                          name: 'Publish',                              \
Note: See TracChangeset for help on using the changeset viewer.