Skip to content
Open
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 aspect/fast_build_info.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def _fast_build_info_impl(target, ctx):

output_groups = depset(output_files, transitive = dep_outputs)

return struct(output_groups = {"ide-fast-build": output_groups})
return OutputGroupInfo(**{"ide-fast-build": output_groups})

def _get_all_dep_outputs(dep_targets):
"""Get the ide-fast-build output files for all dependencies"""
Expand Down
4 changes: 2 additions & 2 deletions aspect/intellij_info_impl.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1058,10 +1058,10 @@ def intellij_info_aspect_impl(target, ctx, semantics):

tags = ctx.rule.attr.tags
if "no-ide" in tags:
return struct()
return []

if _is_analysis_test(target):
return struct()
return []

rule_attrs = ctx.rule.attr

Expand Down