Changeset 6b00c53 for Jenkinsfile


Ignore:
Timestamp:
Jul 31, 2022, 2:03:18 PM (21 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
d71db1a
Parents:
9d2609fa
Message:

Jenkins no longer offers the option to build the old ast

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r9d2609fa r6b00c53  
    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.