diff --git a/.github/workflows/post-build-selective.yml b/.github/workflows/post-build-selective.yml index eab198d0c9a..5d0a0db5762 100644 --- a/.github/workflows/post-build-selective.yml +++ b/.github/workflows/post-build-selective.yml @@ -73,6 +73,8 @@ jobs: - run: ./mill -i -k selective.resolve ${{ inputs.millargs }} + - run: cat out/mill-build/methodCodeHashSignatures.dest/current/spanningInvalidationTree.json + - run: ./mill -i -k selective.resolveTree ${{ inputs.millargs }} - run: ./mill -i -j1 -k selective.run ${{ inputs.millargs }} diff --git a/example/package.mill b/example/package.mill index 16c29d17233..ff5bfa1e1a9 100644 --- a/example/package.mill +++ b/example/package.mill @@ -211,7 +211,8 @@ object `package` extends RootModule with Module { trait ExampleCrossModule extends build.integration.IntegrationTestModule { // disable scalafix because these example modules don't have sources causing it to misbehave - def testRepoRoot: T[PathRef] = Task.Source(millSourcePath) + def testRepoSourceRoot: T[PathRef] = Task.Source(millSourcePath) + def testRepoRoot: T[PathRef] = Task{ testRepoSourceRoot() } def sources0 = Task.Sources(millSourcePath) def sources = Task { diff --git a/readme.adoc b/readme.adoc index 11d25a9f69a..d75f425cd9b 100644 --- a/readme.adoc +++ b/readme.adoc @@ -25,7 +25,6 @@ https://www.patreon.com/lihaoyi[image:https://img.shields.io/badge/patreon-spons Mill is a fast JVM build tool that supports Java and Scala. Mill aims to make your project’s build process performant, maintainable, and flexible. - If you want to use Mill in your own projects, check out our documentation: * {link-current-doc-site}[Documentation]