aboutsummaryrefslogtreecommitdiff
path: root/stage2/GitDependency.scala
Commit message (Collapse)AuthorAgeFilesLines
* Unify reflectively loading builds from directories.Christopher Vogt2017-03-201-10/+14
| | | | | | | | | | THis is mostly cleanup and a little bit feature. Before it was done partially in 3 places, BuildBuild, loadRoot and GitDependency. Now DirectoryDependencies also support referencing sub-builds. Also introduce scalariform for the first few files of cbt's core code :).
* fix file watching for realChristopher Vogt2017-03-121-1/+2
| | | | | | | last file watching update didn’t work well enough. This now - rips out barbary watch service as it seems buggy crashing the jvm - make cbt exclusively write files to watch to a file - uses fswatch instead watching all files in that file
* expose git checkout functionality for embedding sources from gitChristopher Vogt2017-03-121-47/+46
|
* Make GitDependency and DirectoryDependency simply return Build objectsChristopher Vogt2017-03-111-65/+57
|
* allow git dependencies on sub buildsChristopher Vogt2017-02-191-3/+11
|
* implicitly pass classloader, might make code easierChristopher Vogt2017-02-141-0/+1
| | | | | and prepares for allowing `run` and `runFlat` at Dependency instead of Build level
* easier setting of projectDirectory in sub-buildsChristopher Vogt2017-02-131-2/+2
| | | | | by replacing context.projectDirectory by workingDirectory and using it as the default but allowing it to being overridden
* idempotent change propagationChristopher Vogt2017-02-091-1/+1
| | | | | | using lastModified instead of a non-idempotent needsUpdate flag this fixes a bug where dependees would not be rebuilt if cbt exited or was killed after dependencies were already rebuilt.
* memoize task results across classes within a single runChristopher Vogt2017-02-091-6/+4
|
* Fix: non-existing git ref will now be tried to be fetched next timeChristopher Vogt2016-10-141-18/+30
| | | | | | | We had a problem where cbt cloned a repository, then tried to checkout the desired ref, but if it didn't exist would get stuck with that ref and never try again to fetch the correct one. This would lead to wrong versions of libraries and cbt being loaded for particular referenced refs
* Some cosmetic changes to git authChristopher Vogt2016-08-291-20/+21
|
* Support for private git repositories.ChavXO2016-08-281-4/+19
|
* better name for DirectoryDependencyChristopher Vogt2016-06-191-1/+1
| | | | | seems to be more precise than BuildDependency, hence hopefully more readable also cleaned up Scaffolding and added DirectoryDependency example
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-2/+1
| | | | changes builds from using immutable.Seq to using Predef.Seq in favor of simplicity over purity. This has been discussed on gitter.
* support for git dependencies on projects in subdirectoriesChristopher Vogt2016-06-151-5/+9
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-3/+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)
* 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
* Correctly interact with build in cwd instead of loading it's managed build ↵Christopher Vogt2016-04-061-1/+1
| | | | in case of a BuildBuild.
* Implement alternative resolversChristopher Vogt2016-04-031-0/+1
| | | | | | | | | | | | 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.
* propagate info if cbt has changed across builds, so they can be re-compiledChristopher Vogt2016-04-021-2/+2
|
* Makes zinc usage smarter, so we do not need to call it when no files changed ↵Christopher Vogt2016-03-301-1/+1
| | | | | | (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.
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-191-2/+2
| | | | caching classloaders hierarchically without deadlocks
* Add support for git dependenciesChristopher Vogt2016-03-181-0/+49
pair coded with @chavxo