Changeset ea5b7d6
- Timestamp:
- Aug 10, 2018, 1:05:20 PM (6 years ago)
- 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
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r455a7d5 rea5b7d6 28 28 29 29 # src executables, for lib and bin 30 src/driver/as31 src/driver/cfa32 src/driver/cfa-cpp33 src/driver/cc130 driver/as 31 driver/cfa 32 driver/cfa-cpp 33 driver/cc1 34 34 35 src/prelude/bootloader.c 36 src/prelude/builtins.cf 37 src/prelude/extras.cf 38 src/prelude/gcc-builtins.cf 39 src/prelude/gcc-builtins.c 40 src/prelude/prelude.cf 41 src/libcfa/libcfa-prelude.c 35 libcfa/prelude/bootloader.c 36 libcfa/prelude/builtins.cf 37 libcfa/prelude/extras.cf 38 libcfa/prelude/gcc-builtins.cf 39 libcfa/prelude/gcc-builtins.c 40 libcfa/prelude/prelude.cf 41 libcfa/x64-debug/ 42 libcfa/x64-nodebug/ 43 libcfa/x64-nolib/ 44 libcfa/x86-debug/ 45 libcfa/x86-nodebug/ 46 libcfa/x86-nolib/ 47 libcfa/arm-debug/ 48 libcfa/arm-nodebug/ 49 libcfa/arm-nolib/ 50 42 51 43 52 # generated by bison and lex from parser.yy and lex.ll -
Jenkinsfile
r455a7d5 rea5b7d6 277 277 //Use the current directory as the installation target so nothing escapes the sandbox 278 278 //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" 280 280 281 281 //Compile the project … … 291 291 //Run the tests from the tests directory 292 292 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 ' 295 295 } 296 296 else { 297 sh 'make --no-print-directory -C src/tests'297 sh 'make --no-print-directory -C tests' 298 298 } 299 299 } … … 308 308 dir (builddir) { 309 309 //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" 311 311 } 312 312 }
Note: See TracChangeset
for help on using the changeset viewer.