Changeset ea5b7d6 for Jenkinsfile


Ignore:
Timestamp:
Aug 10, 2018, 1:05:20 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:
0c1b566
Parents:
455a7d5
Message:

Fixed jenkins after rework of automake

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r455a7d5 rea5b7d6  
    277277                        //Use the current directory as the installation target so nothing escapes the sandbox
    278278                        //Also specify the compiler by hand
    279                         sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --enable-silent-rules --quiet"
     279                        sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --quiet"
    280280
    281281                        //Compile the project
     
    291291                        //Run the tests from the tests directory
    292292                        if ( do_alltests ) {
    293                                 sh 'make --no-print-directory -C src/tests all-tests debug=yes'
    294                                 sh 'make --no-print-directory -C src/tests all-tests debug=no '
     293                                sh 'make --no-print-directory -C tests all-tests debug=yes'
     294                                sh 'make --no-print-directory -C tests all-tests debug=no '
    295295                        }
    296296                        else {
    297                                 sh 'make --no-print-directory -C src/tests'
     297                                sh 'make --no-print-directory -C tests'
    298298                        }
    299299                }
     
    308308                dir (builddir) {
    309309                        //Append bench results
    310                         sh "make --no-print-directory -C src/benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
     310                        sh "make --no-print-directory -C benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
    311311                }
    312312        }
Note: See TracChangeset for help on using the changeset viewer.