aboutsummaryrefslogtreecommitdiff
path: root/stage2
Commit message (Collapse)AuthorAgeFilesLines
* Make publishSnapshot also publish checksumsChristopher Vogt2016-06-011-11/+13
|
* pass command line arguments through to cbt tools scala and cbt tools ammChristopher Vogt2016-06-011-4/+5
|
* update ammonite (doesn't help though, still doesn't start through cbt tools)Christopher Vogt2016-06-011-1/+1
|
* minor cleanupChristopher Vogt2016-06-012-2/+1
|
* Show more info on stderr when uploading filesChristopher Vogt2016-06-011-1/+1
|
* read sonatype credentials from cbt installation, not from other checked out ↵Christopher Vogt2016-05-262-1/+2
| | | | version
* Publish to right destination based on version suffixChristopher Vogt2016-05-262-8/+11
|
* Fix scalaMajorVersion in artifact idChristopher Vogt2016-05-262-3/+6
|
* Fix bug in jar contents path. Should be relative, not absolute.Christopher Vogt2016-05-251-1/+1
|
* Hack to not display ExitCode unnecessarilyChristopher Vogt2016-05-111-2/+3
|
* add r alias for runChristopher Vogt2016-05-031-0/+1
|
* annotate required return type of main methodChristopher Vogt2016-05-031-1/+1
|
* improve build file templatesChristopher Vogt2016-05-031-18/+28
|
* encourage whitespace in parenthesis (more readable ;))Christopher Vogt2016-05-031-6/+6
|
* create scaffolding for Main fileChristopher Vogt2016-05-032-2/+13
|
* Convenience factory methods for ResolversChristopher Vogt2016-05-034-52/+43
|
* rename admin into tools, which seems more appropriateChristopher Vogt2016-05-022-7/+7
|
* fix exit code returnChristopher Vogt2016-04-291-6/+6
|
* Fix use compatibility interfaces from main cbtChristopher Vogt2016-04-291-3/+1
|
* Fix building cbt as a cbt projectChristopher Vogt2016-04-293-5/+10
|
* Support recursively running tasks across all builds in transitive dependenciesChristopher Vogt2016-04-281-0/+48
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-2811-119/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* only run tests if there are actually tests to run (useful for recursively ↵Christopher Vogt2016-04-282-14/+18
| | | | running tests in nested projects)
* Build mixin with recommended settingsChristopher Vogt2016-04-281-1/+12
|
* make cacheabilty of git dependency depend on cacheability of it's build. ↵Christopher Vogt2016-04-281-13/+16
| | | | Also separate out regex, so we can use it to detect cbt version urls later
* from from File to Path directlyChristopher Vogt2016-04-281-2/+3
|
* move soure file filterin logic into library for reusabilityChristopher Vogt2016-04-282-8/+11
|
* Make sonatype credentials customizable from Build class rather than hard codedChristopher Vogt2016-04-282-11/+23
|
* Wrong use of classifierChristopher Vogt2016-04-281-1/+1
|
* cross building and automatic snaphot idsChristopher Vogt2016-04-076-14/+43
| | | | | Adds support for cross building for multiple scala versions And for automatically appending -SNAPSHOT to the id, when publishing a snapshot.
* Fix stage2 classloader not being stored in transient cacheChristopher Vogt2016-04-072-9/+9
| | | | | and thus being re-created on second and subsequent runs. Also use classloader from cache for Builds rather than new one, which should properly make Build dependencies work.
* Pass ClassLoaderCache from stage1 to stage2 instead of wrongly creating ↵Christopher Vogt2016-04-063-5/+5
| | | | another one. This should improve behavior of transient cache.
* Correctly interact with build in cwd instead of loading it's managed build ↵Christopher Vogt2016-04-066-22/+21
| | | | in case of a BuildBuild.
* Finally get rid of JDK 8 dependenciesChristopher Vogt2016-04-042-5/+3
|
* Better error message when build folder does not contain Build classChristopher Vogt2016-04-031-0/+2
|
* Implement alternative resolversChristopher Vogt2016-04-037-51/+72
| | | | | | | | | | | | This commit also - requires Dependencies to explicitly implement canBeCached - unifies some logic for dependency downloading - moves SBT-like dependency DSL into its own trait - error message showing build directory for exceptions in builds Not splitting this up in favor of faster progress to 1.0. The user facing API can probably be slightly improved using implicits inside of BasicBuild, but we can do that later.
* split launcher library functions into their own fileChristopher Vogt2016-04-021-0/+1
|
* propagate info if cbt has changed across builds, so they can be re-compiledChristopher Vogt2016-04-024-8/+8
|
* support for scaffolding BuildBuild fileChristopher Vogt2016-04-022-11/+25
|
* only compile and only produce jars if there are actually files.Christopher Vogt2016-04-023-55/+69
| | | | This seem desirable, but also fixes a test failure for which I have no idea why it didn't fail before but now.
* Fix BasicBuild file scaffolding (creating folder if necessary)Christopher Vogt2016-04-021-1/+3
|
* Makes zinc usage smarter, so we do not need to call it when no files changed ↵Christopher Vogt2016-03-304-43/+24
| | | | | | (and safe up to 0.1s for each call) There still seem to be 2 bugs related to CBT development in the code. One if you simpy save a stage1 file unchanged and re-run cbt, it fails to call Stage2.run reflectively. Also in case of compile errors in stage1, a TrappedExitCode exception is thrown and not caught.
* Typed passing of values from Stage1 to Stage2Christopher Vogt2016-03-303-21/+18
| | | | (thing can still be cleaned up)
* Upgrade ammonite (still now working, but different crash)Christopher Vogt2016-03-281-1/+1
|
* replace Scala reflection with Java reflection seems to fix the weird ↵Christopher Vogt2016-03-285-54/+218
| | | | exceptions that happened in the previous commit. Also gets rid of scala.reflect dependency in stage2.
* Early classloading improvementsChristopher Vogt2016-03-281-3/+93
| | | | | | | | | - Changed launcher to already load zinc - use code generation to generate necessary dependencies - changed resolver to linearize dependency DAG in a way that guarantees that every transitive dependee of a node in the DAG is a transitive dependee of that node in the linear sequence - move exit code trapping code into java so it can be used for zinc early There seems to be a bug in this version, where CBT crashes about half of the time with a "object is not an instance of declaring class" Exception during running the task from the build object via reflection.
* get rid of ammonite dependencyChristopher Vogt2016-03-193-11/+7
|
* Add cbt admin dependencyTreeChristopher Vogt2016-03-191-0/+7
|
* replace two level classloader with hierarchyChristopher Vogt2016-03-192-4/+5
| | | | | | replace two level classloader (one for non-cachable dependencies with a cached parent one for cachable ones) with a hierachy of classloaders corresponding this should eventually allow re-using CBT's classloader between stage1 and stage2 this change breaks the ScalaTest support for now
* minor enhancements to classloadingChristopher Vogt2016-03-191-1/+1
|