aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* get rid of ammonite dependencyChristopher Vogt2016-03-194-14/+7
|
* More speedup by already caching some classloaders in NailgunLauncher. Also ↵Christopher Vogt2016-03-193-40/+67
| | | | fix a few warnings.
* Add cbt admin dependencyTreeChristopher Vogt2016-03-191-0/+7
|
* replace two level classloader with hierarchyChristopher Vogt2016-03-198-62/+100
| | | | | | 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
* add a time keeping facility for debuggingChristopher Vogt2016-03-191-0/+23
|
* avoid repeated filesystem lookups for maven dependenciesChristopher Vogt2016-03-191-1/+2
|
* Add CachingClassLoader to cache loadClass of URLClassLoaderChristopher Vogt2016-03-192-9/+40
|
* move KeyLockedLazyCache to its own fileChristopher Vogt2016-03-192-44/+47
|
* minor refactorings of KeyLockedLazyCacheChristopher Vogt2016-03-191-18/+17
|
* maybe we were caching too muchChristopher Vogt2016-03-191-1/+1
|
* minor enhancements to classloadingChristopher Vogt2016-03-196-20/+38
|
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-1915-73/+84
| | | | caching classloaders hierarchically without deadlocks
* classloader for maven dependency can now cache it's own jar as wellChristopher Vogt2016-03-191-3/+5
|
* move decision about admin tasks or not from bash into ScalaChristopher Vogt2016-03-192-16/+4
|
* Make trapExitCode pass on previous exit codesChristopher Vogt2016-03-192-6/+4
|
* Separate CheckAliveChristopher Vogt2016-03-192-6/+7
|
* Merge pull request #92 from cvogt/scaffold-fixJan Christopher Vogt2016-03-194-42/+19
|\ | | | | make scaffold work for simple case
| * make scaffold work for simple caseChristopher Vogt2016-03-194-42/+19
|/
* Merge pull request #91 from cvogt/git-dependenciesJan Christopher Vogt2016-03-186-3/+60
|\ | | | | Add support for git dependencies
| * Add support for git dependenciesChristopher Vogt2016-03-186-3/+60
| | | | | | | | pair coded with @chavxo
* | Merge pull request #90 from cvogt/pom-inheritance-fixJan Christopher Vogt2016-03-173-10/+38
|\| | | | | fixed previously too naive pom inheritance logic to properly handle p…
| * fixed previously too naive pom inheritance logic to properly handle ↵Christopher Vogt2016-03-173-10/+38
|/ | | | | | properties and dependencyManagement pom inheritance features pair-coded with @chavxo
* Merge pull request #75 from cvogt/license-changeJan Christopher Vogt2016-03-131-22/+10
|\ | | | | Change License to Apache 2.0
| * Change License to Apache 2.0Jan Christopher Vogt2016-03-111-22/+10
| |
* | Merge pull request #86 from cvogt/farmdawg/zinc-exit-codesJan Christopher Vogt2016-03-126-79/+93
|\ \ | | | | | | exit code fixes etc
| * | sort transitiveDependencies by exported classpath for hopefully more ↵Christopher Vogt2016-03-123-2/+9
| | | | | | | | | | | | determinism between dev machines and circle ci
| * | fix zinc interface dependenciesChristopher Vogt2016-03-121-13/+13
| | |
| * | Merge remote-tracking branch 'origin/master' into farmdawg/zinc-exit-codesChristopher Vogt2016-03-1212-52/+184
| |\ \ | |/ / |/| | | | | | | | | | | # Conflicts: # stage1/Stage1Lib.scala # stage1/resolver.scala
* | | Merge pull request #85 from cvogt/fix-masterJan Christopher Vogt2016-03-121-1/+1
|\ \ \ | | | | | | | | two separate merges broke this.
| * | | two separate merges broke this.Christopher Vogt2016-03-121-1/+1
|/ / /
* | | Merge pull request #84 from cvogt/dependency-syntaxJan Christopher Vogt2016-03-1211-54/+98
|\ \ \ | | | | | | | | Improved how to express dependencies
| * | | Improved how to express dependenciesChristopher Vogt2016-03-1211-54/+98
| | | | | | | | | | | | | | | | | | | | | | | | Add - Constructor syntax for cross-scala-version dependencies (as rightfully requested on reddit) and encouraged over SBT's still supported operator syntax - Add support for classifiers other than "sources"
* | | | Merge pull request #79 from cvogt/concurrent-buildsJan Christopher Vogt2016-03-122-0/+87
|\ \ \ \ | |/ / / |/| | | A draft implementation that runs builds concurrently
| * | | A draft implementation that runs builds concurrently (probably buggy right ↵Christopher Vogt2016-03-122-0/+87
| | | | | | | | | | | | | | | | now). Is CBT "reactive" now ;)?
| | * | Always reset security manager to what it was during startup. Should be less ↵Christopher Vogt2016-03-122-2/+3
| | | | | | | | | | | | | | | | fragile with regards to concurrency and user code setting security managers.
| | * | minor simplification renamesChristopher Vogt2016-03-122-5/+4
| | | |
| | * | Clean up some of the zinc invocation.Matt Farmer2016-03-122-19/+28
| | | |
| | * | Re-enable cache detection.Matt Farmer2016-03-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We had previously disabled needsRecompile caching because we weren't properly capturing zinc's status at the conclusion of a compile. So we *always* had to recompile. Now that we've fixed the exit detection on zinc, we can correctly cache things and not recompile if the sources haven't changed.
| | * | Properly bubble error codes from tasks.Matt Farmer2016-03-121-5/+9
| | | |
| | * | Whitespace removal.Matt Farmer2016-03-122-12/+12
| | | |
| | * | Bubble zinc error codes to calling script.Matt Farmer2016-03-121-46/+39
| |/ / |/| | | | | | | | | | | We were previously eating zinc error codes because we invoked trapExitCode twice in the same call stack.
* | | Merge pull request #78 from cvogt/chrisJan Christopher Vogt2016-03-1217-131/+172
|\| | | |/ |/| Chris
| * minor refactoringsChristopher Vogt2016-03-113-3/+3
| |
| * re-enable usage page testsChristopher Vogt2016-03-112-16/+15
| |
| * only exit with fail if task not found, not if nothing was givenChristopher Vogt2016-03-111-2/+4
| |
| * Split ClassLoader classes into separate files and a few fixesChristopher Vogt2016-03-117-69/+85
| |
| * Add feature for starting the Scala REPL in arbitrary versions, propagate ↵Christopher Vogt2016-03-098-43/+67
| | | | | | | | logger as implicits
* | Merge pull request #72 from paulp/scala-2.11.8Jan Christopher Vogt2016-03-093-6/+6
|\ \ | | | | | | Scala version 2.11.8.
| * | Scala version 2.11.8.Paul Phillips2016-03-093-6/+6
|/ /
* | Merge pull request #70 from cvogt/chrisJan Christopher Vogt2016-03-093-11/+22
|\| | | | | fixes