Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebootstrap and turn on selective.resolveTree in CI #4351

Merged
merged 4 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.5-131-1e6358-native
0.12.5-144-22bb1b-native
2 changes: 2 additions & 0 deletions .github/workflows/post-build-selective.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ jobs:

- run: ./mill -i -k selective.resolve ${{ inputs.millargs }}

- run: ./mill -i -k selective.resolveTree ${{ inputs.millargs }}

- run: ./mill -i -j1 -k selective.run ${{ inputs.millargs }}
if: ${{ inputs.install-android-sdk }}
env:
Expand Down
3 changes: 3 additions & 0 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,9 @@ trait MillPublishJavaModule extends MillJavaModule with PublishModule {
* Some custom scala settings and test convenience
*/
trait MillScalaModule extends ScalaModule with MillJavaModule with ScalafixModule { outer =>
def fix(args: String*) = Task.Command[Unit] {
/*https://github.com/com-lihaoyi/mill/issues/4353*/
}
def scalaVersion = Deps.scalaVersion
def scalafixScalaBinaryVersion = ZincWorkerUtil.scalaBinaryVersion(scalaVersion())
def semanticDbVersion = Deps.semanticDBscala.version
Expand Down
Loading