File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 35
35
- uses : actions/setup-go@v2
36
36
with :
37
37
go-version : ' ^1.13.1' # The Go version to download (if necessary) and use.
38
- - run : go get github.com/bazelbuild/buildtools/buildifier
38
+ - run : go install github.com/bazelbuild/buildtools/buildifier@latest
39
39
- run : buildifier -lint=warn -mode=check $(find . -type f \( -name BUILD.bazel -or -name BUILD -or -name *.bzl \))
40
40
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ Provider for storing information about a fuzz test binary.
45
45
},
46
46
)
47
47
48
- def _fuzzing_binary_transition_impl (settings , attr ):
48
+ def _fuzzing_binary_transition_impl (settings , _attr ):
49
49
opts = instrum_opts .make (
50
50
copts = settings ["//command_line_option:copt" ],
51
51
conlyopts = settings ["//command_line_option:conlyopt" ],
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Rule for creating a script to run the fuzzing test.
66
66
default = Label ("//fuzzing/tools:launcher" ),
67
67
doc = "The launcher script to start the fuzzing test." ,
68
68
executable = True ,
69
- cfg = "host " ,
69
+ cfg = "exec " ,
70
70
),
71
71
"binary" : attr .label (
72
72
executable = True ,
@@ -112,7 +112,7 @@ specified in the srcs attribute.
112
112
default = Label ("//fuzzing/tools:make_corpus_dir" ),
113
113
doc = "The tool script to copy and rename the corpus." ,
114
114
executable = True ,
115
- cfg = "host " ,
115
+ cfg = "exec " ,
116
116
),
117
117
"srcs" : attr .label_list (
118
118
doc = "The corpus files for the fuzzing test." ,
@@ -151,7 +151,7 @@ Rule to validate the fuzzing dictionaries and output a merged dictionary.
151
151
default = Label ("//fuzzing/tools:validate_dict" ),
152
152
doc = "The tool script to validate and merge the dictionaries." ,
153
153
executable = True ,
154
- cfg = "host " ,
154
+ cfg = "exec " ,
155
155
),
156
156
"dicts" : attr .label_list (
157
157
doc = "The fuzzing dictionaries." ,
You can’t perform that action at this time.
0 commit comments