Add linter workflow (#33)

This commit is contained in:
Lutz Justen
2022-12-01 10:38:14 +01:00
committed by GitHub
parent a381541d1b
commit 876e59409f
23 changed files with 73 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
# Yeti's custom BUILD file
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
package(default_visibility = ["//visibility:public"])
licenses(["restricted"]) # GPL (binary), LGPL (library)
@@ -69,10 +71,10 @@ cc_library(
"-lpthread",
"-ldl",
],
linkstatic = 1, # Required to make symbols show up in libfuse.so above.
visibility = ["//visibility:private"],
deps = [":fuse_headers"],
alwayslink = 1,
linkstatic = 1, # Required to make symbols show up in libfuse.so above.
)
cc_library(