Changeset 155c2a28 for Jenkinsfile


Ignore:
Timestamp:
Aug 17, 2018, 1:24:54 PM (6 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
5afeab9
Parents:
8e27665d
Message:

Evaluating types before moving to a settings global type

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r8e27665d r155c2a28  
    2626                        notify_server(0)
    2727
    28                         prepare_build()
     28                        final settings = prepare_build()
    2929
    3030                        clean()
     
    8585        final scmVars = checkout scm
    8686        echo "----------------------------------------"
     87        echo "${scmVars.getClass()}"
    8788        echo "scmVars: ${scmVars}"
    8889
     
    9798        gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1]
    9899        gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2]
     100}
     101
     102class BuildSettings implements Serializable {
     103        BuildSettings() {
     104        }
    99105}
    100106
     
    145151                ]])
    146152
    147         params.Compiler   = compiler_from_params( params.Compiler )
    148         params.Architecture = architecture_from_params( params.Architecture )
     153        echo "${params.getClass()}"
     154
     155        compiler         = compiler_from_params( params.Compiler )
     156        crchitecture = architecture_from_params( params.Architecture )
    149157
    150158        def full = params.RunAllTests ? " (Full)" : ""
    151         currentBuild.description = "${ params.Compiler.cc_name }:${ params.Architecture.name }${full}"
    152 
    153         echo """Compiler                 : ${ params.Compiler.cc_name } (${ params.Compiler.cpp_cc }/${ params.Compiler.cfa_cc })
    154 Architecture            : ${ params.Architecture.name }
    155 Arc Flags               : ${ params.Architecture.flags }
     159        currentBuild.description = "${ compiler.cc_name }:${ architecture.name }${full}"
     160
     161        echo """Compiler                 : ${ params.Compiler.cc_name } (${ compiler.cpp_cc }/${ compiler.cfa_cc })
     162Architecture            : ${ architecture.name }
     163Arc Flags               : ${ architecture.flags }
    156164Run All Tests           : ${ params.RunAllTests.toString() }
    157165Run Benchmark           : ${ params.RunBenchmark.toString() }
Note: See TracChangeset for help on using the changeset viewer.