aboutsummaryrefslogtreecommitdiff
path: root/test/simple-fixed
Commit message (Collapse)AuthorAgeFilesLines
* remove duplication between simple and simple-fixed testChristopher Vogt2017-03-112-20/+0
|
* upgrade test project cbt versions parts 2 of 2Christopher Vogt2017-02-091-1/+1
|
* upgrade test project cbt versionsChristopher Vogt2017-02-091-1/+1
| | | | | | because this cbt version has become incompatible with the ones references there and would lead to Context related errors part 1 of 2
* Upgrade references cbt versions after binary incompatible Context changeChristopher Vogt2016-11-091-1/+1
| | | | part 2
* Upgrade references cbt versions after binary incompatible Context changeChristopher Vogt2016-11-091-1/+1
|
* upgrade hard-coded git hash dependencies after tests passChristopher Vogt2016-11-081-1/+1
|
* upgrade hard-coded git hash dependenciesChristopher Vogt2016-11-081-1/+1
|
* change git dependencies to be easier manageable when cbt becomes source ↵Christopher Vogt2016-10-032-4/+3
| | | | incompatible
* disable test sporadically failing on circleci from circleciChristopher Vogt2016-09-281-1/+0
|
* 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.
* scalajs cross project support as pluginKatrin Shechtman2016-06-131-1/+1
|
* Fix the tests, by adapting to recent CBT changes. (This was easier than I ↵Christopher Vogt2016-06-011-21/+21
| | | | expected)
* Update fixed dependency hash to latestChristopher Vogt2016-06-011-1/+1
|
* fix test to use repo actually generally availableChristopher Vogt2016-04-291-1/+1
|
* Fix and enable test for reproducible buildsChristopher Vogt2016-04-291-3/+2
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-282-0/+40
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)