aboutsummaryrefslogtreecommitdiff
path: root/test/build
Commit message (Collapse)AuthorAgeFilesLines
* minor reflection related refactorChristopher Vogt2017-03-281-1/+1
|
* allow running tests in the same process, forked or forked in direct modeChristopher Vogt2017-03-271-0/+3
|
* start modularizing cbt into librariesChristopher Vogt2017-03-271-0/+1
| | | | | | | | | | this extracts certain parts of cbt into stand-alone libraries, which can be published to maven and used outside of cbt. This also adds scalariform for these parts of the code. This slows down cbt’s own build a lot because of the number of projects involved! So we’ll follow this by a bunch of performance tweak commits.
* fix bugs with argument passing to testsChristopher Vogt2017-03-121-0/+1
|
* turn `test` into a subproject for easy access to test’s tasksChristopher Vogt2017-02-271-0/+1
|
* add plugin builds and scalatest example build to being compiled in testsChristopher Vogt2016-06-191-1/+1
|
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-2/+0
| | | | changes builds from using immutable.Seq to using Predef.Seq in favor of simplicity over purity. This has been discussed on gitter.
* turn Build base classes into traits for less verbosity and uniform usage ↵Christopher Vogt2016-06-151-1/+1
| | | | with any other plugin
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One large commit, because it is was hard to do these things in isolation or to separate them now. CBT now knows how to load other versions of itself - Support for reproducible builds (!), by providing a CBT git URL and hash to tie build to - Support for composing builds using different CBT versions (!) - introduce (in compatibility/) Java interfaces all CBT versions need to stay compatible with, so they can talk to each other. And put extension methods to these interfaces in cbt package object Class loading - add some sanity checks for class loading - improve class loader invalidation to fix bugs - implement caching in Java land class loaders. In particular to prevent the system class loader to repeatedly generate ClassNotFound exceptions in each sink of the class loader DAG for non JDK classes (meaning major speed up for projects with many classes). - getting rid of transient class loader cache unifying into "persistent" one instead (which is still wrong as invalidation eventually needs to invalidate entire sub graphs of the class loading DAG, not single class loaders. Seems like we'll have to abandon the hashmap based approach and tie caching to dependency objects) Other Caching - cache dependencies extracted from xml files, which was one major time killer, but invalidate cache when cbt changed (maven dependency user facing api needs simplification now!) - memorize last successful compile time in the file system rather than memory, to guard against unnecessary recompiling even across launches (or when using cbt direct) Structural improvements - Factor out ClassLoaderCache on Java land into its own class. - Port MultiClassLoader to Java land, to better compose classloaders in NailgunLauncher. - Remove many global constants and variables (in object paths and in NailgunLauncher) and pass them through instead. Needed for composing of builds. - move more code from resolver into Lib for less entanglement with classes (needed to compatibility interfaces) and better re-usability - remove canBeCached. Everything can be cached now, but we need to be careful about correct invalidation. - remove build announcing produced jars. We can add if ever needed. - change callNullary to return exit code instead of Unit as preparation for next commit introducing "recursive" ScalaTest - Makes ScalaTest support work (still a bit too inflexible, but mostly works well)
* Split ClassLoader classes into separate files and a few fixesChristopher Vogt2016-03-111-3/+4
|
* CBT Version 1.0-BETAChristopher Vogt2016-03-041-0/+5