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

Run clang-format and clang-tidy on eBPF code #6669

Merged
merged 11 commits into from
Mar 4, 2021
Prev Previous commit
Next Next commit
Fix python lint
  • Loading branch information
brycekahle committed Mar 4, 2021
commit eb81743327d56d3a907ea535522a1b80eeab7cbf
4 changes: 2 additions & 2 deletions tasks/system_probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def build(
for line in lines:
for env_var in GIMME_ENV_VARS:
if env_var in line:
goenv[env_var] = line[line.find(env_var) + len(env_var) + 1: -1].strip('\'\"')
goenv[env_var] = line[line.find(env_var) + len(env_var) + 1 : -1].strip('\'\"')
ld_vars["GoVersion"] = go_version

# extend PATH from gimme with the one from get_build_flags
Expand Down Expand Up @@ -191,7 +191,7 @@ def test(
bundle_ebpf=True,
output_path=None,
runtime_compiled=False,
skip_linters=False
skip_linters=False,
):
"""
Run tests on eBPF parts
Expand Down