Skip to content
Merged
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
5 changes: 2 additions & 3 deletions tasks/protobuf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from invoke import Exit, task

from tasks.libs.build.bazel import BazelTools
from tasks.libs.build.bazel import BazelTools, bazel
from tasks.libs.common.color import Color, color_message
from tasks.libs.common.git import get_unstaged_files, get_untracked_files

Expand All @@ -17,7 +17,6 @@
'process': False,
'workloadmeta': False,
'kubemetadata': False,
'languagedetection': False,
'privateactionrunner': False,
'remoteagent': False,
'autodiscovery': False,
Expand Down Expand Up @@ -80,7 +79,7 @@ def generate(ctx, pre_commit=False):
with ctx.cd(repo_root):
# protobuf defs
print(f"generating protobuf code from: {proto_root}")

bazel(ctx, "run", "//pkg/proto/pbgo/languagedetection:write_pb_go")
for pkg, inject_tags in PROTO_PKGS.items():
files = []
pkg_root = Path(proto_root, "datadog", pkg)
Expand Down
Loading