Changeset e6b862d for Jenkinsfile


Ignore:
Timestamp:
Feb 22, 2017, 3:12:13 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:
654d2228
Parents:
0370b9b
Message:

String.toBoolean is FORBIDDEN by jenkins for some reason

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r0370b9b re6b862d  
    147147        architecture    = architecture_from_params( pArchitecture )
    148148
    149         do_alltests             = pRunAllTests.toBoolean()
    150         do_benchmark    = pRunBenchmark.toBoolean()
    151         do_doc          = pBuildDocumentation.toBoolean()
    152         do_publish              = pPublish.toBoolean()
    153         do_sendemail    = ! pSilent.toBoolean()
     149        do_alltests             = (pRunAllTests == 'true')
     150        do_benchmark    = (pRunBenchmark == 'true')
     151        do_doc          = (pBuildDocumentation == 'true')
     152        do_publish              = (pPublish == 'true')
     153        do_sendemail    = ! (pSilent == 'true')
    154154
    155155        echo """Compiler                        : ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc})
Note: See TracChangeset for help on using the changeset viewer.