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

Exclude folders bsp #3329

Merged
merged 30 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d43aff2
adding SyntheticRootBspBuildTargetData
pawelsadlo Aug 1, 2024
4407915
adding topLevelBuildRopt param to BspServer, BspWorker, State
pawelsadlo Aug 1, 2024
a058b18
add syntheticRootBspBuildTarget to State
pawelsadlo Aug 1, 2024
45d1d9e
extract makeBuildTarget to Utils, create outputPaths
pawelsadlo Aug 1, 2024
7526305
extract makeBuildTarget to Utils, create outputPaths
pawelsadlo Aug 1, 2024
ce5c96e
filter synthetic module from bspClient requests
pawelsadlo Aug 1, 2024
22e7874
change completableTasks, handle syntheticRootmodule
pawelsadlo Aug 1, 2024
a695dba
fixing name
pawelsadlo Aug 1, 2024
5ef1b67
extract SyntheticRootBspBuildTargetData creation logic to companion o…
pawelsadlo Aug 1, 2024
870acf5
docs
pawelsadlo Aug 1, 2024
c0207b5
moving syntheticRootBspBuildTarget creation logic to companion object
pawelsadlo Aug 1, 2024
d547e34
fixing agg
pawelsadlo Aug 1, 2024
613eb59
format
pawelsadlo Aug 1, 2024
5786d81
Merge branch 'main' into exclude-folders-bsp
pawelsadlo Aug 1, 2024
0107574
format
pawelsadlo Aug 1, 2024
fde6910
Merge remote-tracking branch 'ps_mill/exclude-folders-bsp' into exclu…
pawelsadlo Aug 1, 2024
2ade14a
format
pawelsadlo Aug 1, 2024
392280b
Update SyntheticRootBspBuildTargetData.scala
pawelsadlo Aug 1, 2024
a0e8162
review suggestions
pawelsadlo Aug 4, 2024
445d76d
Merge remote-tracking branch 'ps_mill/exclude-folders-bsp' into exclu…
pawelsadlo Aug 4, 2024
6dee463
Update Utils.scala
lihaoyi Aug 5, 2024
ce1e933
top level ignored folders only
lihaoyi Aug 22, 2024
94a01c9
.
lihaoyi Aug 22, 2024
800c87b
Merge branch 'main' into 3329
lihaoyi Aug 22, 2024
7a6e3b3
.
lihaoyi Aug 22, 2024
2533d49
.
lihaoyi Aug 22, 2024
3172101
.
lihaoyi Aug 22, 2024
ea37b64
.
lihaoyi Aug 22, 2024
362981f
Merge branch 'main' into 3329
lihaoyi Aug 22, 2024
1c8ad5f
.
lihaoyi Aug 22, 2024
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
Prev Previous commit
Next Next commit
.
  • Loading branch information
lihaoyi committed Aug 22, 2024
commit 2533d492d672fb09488283193b3db06bcce0531a
2 changes: 1 addition & 1 deletion bsp/worker/src/mill/bsp/worker/MillJvmBuildServer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private trait MillJvmBuildServer extends JvmBuildServer { this: MillBuildServer
item.setMainClasses(classes.map(new JvmMainClass(_, Nil.asJava)).asJava)
item
} {
agg(_)
agg
}
}

Expand Down
Loading