Changeset 17c6edeb for Jenkinsfile


Ignore:
Timestamp:
Aug 16, 2022, 2:52:24 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
71cf630
Parents:
32d1383 (diff), e116db3 (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
  • Jenkinsfile

    r32d1383 r17c6edeb  
    103103                        }
    104104
    105                         ast = Settings.NewAST ? "--enable-new-ast" : "--disable-new-ast"
    106 
    107                         sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} ${ast} --quiet --prefix=${BuildDir}"
     105                        sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet --prefix=${BuildDir}"
    108106
    109107                        // Configure libcfa
     
    281279        public final CC_Desc Compiler
    282280        public final Arch_Desc Architecture
    283         public final Boolean NewAST
    284281        public final Boolean RunAllTests
    285282        public final Boolean RunBenchmark
     
    339336
    340337                this.IsSandbox          = (branch == "jenkins-sandbox")
    341                 this.NewAST             = param.NewAST
    342338                this.RunAllTests        = param.RunAllTests
    343339                this.RunBenchmark       = param.RunBenchmark
     
    349345                this.DescShort = "${ this.Compiler.name }:${ this.Architecture.name }${full}"
    350346
    351                 final ast = this.NewAST ? "New AST" : "Old AST"
    352347                this.DescLong = """Compiler              : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC })
    353 AST Version             : ${ ast.toString() }
    354348Architecture            : ${ this.Architecture.name }
    355349Arc Flags               : ${ this.Architecture.flags }
     
    389383                                        defaultValue: 'x64',                                                            \
    390384                                ],                                                                                              \
    391                                 [$class: 'BooleanParameterDefinition',                                                  \
    392                                         description: 'If true, build compiler using new AST',           \
    393                                         name: 'NewAST',                                                                         \
    394                                         defaultValue: true,                                                             \
    395                                 ],                                                                                              \
    396385                                [$class: 'BooleanParameterDefinition',                                                  \
    397386                                        description: 'If false, only the quick test suite is ran',              \
Note: See TracChangeset for help on using the changeset viewer.