summaryrefslogtreecommitdiff
path: root/integration
Commit message (Collapse)AuthorAgeFilesLines
* First pass at a Caffeine integration build now works (only on Java 9 tho)Li Haoyi2018-04-086-3/+300
|
* Enable JUnit testing, via sbt-test-interface, for `JavaModule`sLi Haoyi2018-04-081-1/+1
|
* try to fix buildLi Haoyi2018-04-063-10/+5
|
* fix type in release.sh scriptrockjam2018-03-281-1/+1
|
* WIP: Play json build (#182)Nikolay Tatarinov2018-03-2813-3/+766
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * play json build * build progress * add check task * try to make play json js build * scalariform and mima plugins in separate files. check mima * better error message for mima compatibility check * fix scala 2.10 compilation * license headers support * add jmh support * fix reformat on compile; fix code validation; extract base module * remove scala 2.13 from cross versions * include play-json in integration tests * add example .travis.yml * bring back scala 2.13 support * make reformat target, not command * add release task * update mill version in travis.yml * update release script * update release process * add README.md for play json build
* Test mill using Java 9 (in addition to Java 8) (#219)Robby2018-03-102-5/+12
| | | | | | | | * Test mill using Java 9 (in addition to Java 8). * Use mill -i. * Fixed Java 9 path.
* Add dsl for SCM (now called VersionControl) (#168)Guillaume Massé2018-02-282-9/+3
| | | The scm url syntax is a source of confusion for developper. I added VersionControl.github() to simplify this process. We can add other common VersionControl url scheme like Bazar, etc.
* Add predefined licenses from spdx (#144)Guillaume Massé2018-02-262-6/+2
| | | | | | * Add predefined licenses from spdx * Fix License usages
* support multiple test frameworks (#148)Nikolay Tatarinov2018-02-225-9/+9
| | | support multiple test frameworks
* - Fix UpickleTests' JS case when running forkedLi Haoyi2018-02-111-3/+4
| | | | - Shard out forked/local integration tests over the different `test-mill-*.sh` scripts, to try and reduce test times while maintaining coverage
* make test-mill-release run integration tests using the release assemblyLi Haoyi2018-02-119-8/+26
|
* add uPickle to our integration test suiteLi Haoyi2018-02-112-0/+171
|
* fixesLi Haoyi2018-02-112-5/+13
|
* more tidying upLi Haoyi2018-02-111-1/+1
|
* fix testsLi Haoyi2018-02-101-1/+1
|
* re-enable better-files test but with a newer version with offending ↵Li Haoyi2018-02-041-1/+5
| | | | CI-failure commented out
* disable better-files tests for now since they seem broken only in travisLi Haoyi2018-02-041-5/+1
|
* Test fixes...Li Haoyi2018-02-041-6/+5
|
* - Rename `basePath` -> `millSourcePath`Li Haoyi2018-02-023-4/+4
| | | | - Make `T.worker`s not flush out their directories between instantiations
* compile zinc compiler bridges on demand to remove restriction on supported ↵Li Haoyi2018-02-021-2/+2
| | | | scala versions
* Extract out `ScriptTestSuite` from `IntegrationTestSuite` and use it to ↵Li Haoyi2018-01-281-24/+11
| | | | | | create a version of `JavaCompilerJarTests` that runs through our main method & script runner. This should let us catch a lot of bugs with `MainRunner` and friends quickly, without needing to run the slow integration tests
* First incomplete pass at writing docsLi Haoyi2018-01-272-7/+3
|
* Fix `dest`-assignment for overriden `T.command`s, and add basic unit tests ↵Li Haoyi2018-01-261-0/+1
| | | | to validate the `dest` paths of overriden commands and overriden targets
* - Make `forkTest` and `forkRun` the default, renaming `test` and `run` to ↵Li Haoyi2018-01-211-4/+9
| | | | | | | | | | | | `testLocal` and `runLocal` - Support passing `forkEnv` parameters to `test` and `run`, necessary to get Ammonite working - Standardize signatures of `Jvm.interactiveSubprocess`/`Jvm.subprocess` - `Jvm.inprocess` is now `Jvm.runLocal` - Swap `TestModule.testLocal` over to using `Jvm.runLocal`, for consistency with everything else
* Swap over to simplified Mill module/source layout from SBT'sLi Haoyi2018-01-209-1/+1
| | | | Removes a lot of useless folders and gives us a chance to exercise this simplified layout. Support for the SBT layout is still verified by our integration tests
* Introduce an Ammonite build to our test suiteLi Haoyi2018-01-173-1/+220
|
* Implement downloading/caching of binaries and java-source-folder support to ↵Li Haoyi2018-01-172-1/+7
| | | | make better-files benchmarks compile; fixes https://github.com/lihaoyi/mill/issues/37
* - Swap over to new `ivy"foo:bar:baz"` syntax for defining ivy dependenciesLi Haoyi2018-01-153-33/+32
| | | | | | - `projectDeps` is now `moduleDeps` for compatibility with our `Module` terminology - `scalalib.Module` is now `ScalaModule` for compatibility with `import scalalib._`
* - Tweak Scalajs LinkerBridge project layout to match Mill defaultsLi Haoyi2018-01-141-1/+1
| | | | - Update `build.sc`, `build.sbt` and `ci/` scripts
* more work to get tests passing...Li Haoyi2018-01-141-1/+1
|
* Some tweaks to get tests passing...Li Haoyi2018-01-142-2/+2
|
* WIP getting rid of `discover/` phase: `core/test:compile` works, but some ↵Li Haoyi2018-01-131-1/+1
| | | | things still stubbed out with `???`
* rename OSet -> AggLi Haoyi2018-01-133-11/+11
|
* Migrate most classpath-related code onto `Loose.OSet` abstraction, to ↵Li Haoyi2018-01-134-16/+15
| | | | enforce deduplication
* prepare ci builds - fix tests (#107)Vadim Chelyshov2018-01-081-1/+1
|
* Consolidate `Cross` and `CrossModule`, eliminate now-unused ↵Li Haoyi2018-01-083-8/+5
| | | | `map`/`flatMap`/`filter` APIs
* Swap over to a new, concise `CrossModule[T](..cases)` macro syntax that ↵Li Haoyi2018-01-072-4/+4
| | | | automatically propagates the `ctx` for you
* Generate the `Segments` list at definition time rather than discovery time, ↵Li Haoyi2018-01-072-2/+2
| | | | | | | | by propagating implicits throughout the tree of nested `mill.Module`s This currently adds some annoying boilerplate to the definition of cross/abstract modules, which can probably be removed using Macros. The `Segments` mapping generated by discovery is still present and used in a few places, though it will be removed
* Rename `resource/` folders `resources/` to properly match SBT convention, ↵Li Haoyi2018-01-074-1/+1
| | | | making changes within them get picked up by the file-watching `~compile`/`~test` commands
* First pass at implicitly propagating a `def basePath: Path` up the `Module` ↵Li Haoyi2018-01-074-28/+25
| | | | | | | | hierarchy, which each module receives and extends. One constraint is that now must define your abstract modules as `trait`s rather than `class`es, or otherwise add an implicit `ctx: ModuleCtx` parameter to your class definition. So far this lets us remove some explicit `basePath` definitions in `build.sc`. Proper handling of `basePath` in `CrossModule`s is future work
* fix compilation error in integration testsrockjam2018-01-061-1/+1
|
* Fix scalatest support (#101)Vadim Chelyshov2018-01-052-0/+5
| | | * Fix #99 - it's required to provide sbt.testing.Selector for scalatest
* Swap over to new `CrossModule` class to simplify the cross module syntaxLi Haoyi2018-01-024-17/+19
|
* lowercase build module names in `integration/` tests to line up with SBT ↵Li Haoyi2018-01-024-28/+28
| | | | conventions
* Silence IntegrationTest stdoutLi Haoyi2018-01-011-1/+8
|
* Properly handle `isModule` flag on `sbt.testing.FingerPrint`Li Haoyi2018-01-012-4/+3
|
* Make `HelloWorldTests` take an explicit output path so they are less ↵Li Haoyi2018-01-011-1/+1
| | | | | | sensitive to working directories Make `run` and `runMain` take option CLI args
* Split Acyclic/Jawn/BetterFiles tests into their own `integration/` test suite.Li Haoyi2018-01-017-0/+290
Those tests now download a snapshot of the relevant git repo rather than vendoring the files, and use a bare `build.sc` instead of having the build object be included in the test classpath. Tests pass using `sbt integration/test`, but `mill integration.test` still doesn't work