Changeset 8fa3c7e6 for Jenkinsfile


Ignore:
Timestamp:
Feb 22, 2017, 5:02:53 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
692de479
Parents:
b3e9729
Message:

Fixed full build script with new changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rb3e9729 r8fa3c7e6  
    113113                                        description: 'The target architecture',                                 \
    114114                                        name: 'pArchitecture',                                                          \
    115                                         choices: '64-bit\n32-bit',                                                      \
    116                                         defaultValue: '64-bit',                                                         \
     115                                        choices: 'x64\nx86',                                                            \
     116                                        defaultValue: 'x64',                                                            \
    117117                                ],                                                                                              \
    118118                                [$class: 'BooleanParameterDefinition',                                                  \
    119119                                        description: 'If false, only the quick test suite is ran',              \
    120                                         name: 'pRunAllTests',                                                   \
     120                                        name: 'pRunAllTests',                                                           \
    121121                                        defaultValue: false,                                                            \
    122122                                ],                                                                                              \
    123123                                [$class: 'BooleanParameterDefinition',                                                  \
    124124                                        description: 'If true, jenkins also runs benchmarks',           \
    125                                         name: 'pRunBenchmark',                                                  \
     125                                        name: 'pRunBenchmark',                                                          \
    126126                                        defaultValue: true,                                                             \
    127127                                ],                                                                                              \
     
    219219def architecture_from_params( arch ) {
    220220        switch( arch ) {
    221                 case '64-bit':
     221                case 'x64':
    222222                        return '--host=x86_64 CXXFLAGS="-m64" CFAFLAGS="-m64"'
    223223                break
    224                 case '32-bit':
     224                case 'x86':
    225225                        return '--host=i386   CXXFLAGS="-m32" CFAFLAGS="-m32"'
    226226                break
Note: See TracChangeset for help on using the changeset viewer.