Commit c435ad9 Paulo Gomes
committed
1 parent 5b371de commit c435ad9 Copy full SHA for c435ad9
File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,16 @@ jobs:
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v3
16
+ - name : Setup Go
17
+ uses : actions/setup-go@v3
18
+ with :
19
+ go-version : 1.18.x
16
20
- name : Restore Go cache
17
21
uses : actions/cache@v3
18
22
with :
19
- path : /home/runner/work/_temp/_github_home /go/pkg/mod
23
+ path : ~ /go/pkg/mod
20
24
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
21
25
restore-keys : |
22
- ${{ runner.os }}-go-
26
+ ${{ runner.os }}-go
23
27
- name : Smoke test Fuzzers
24
28
run : make fuzz-smoketest
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ fuzz-build:
155
155
docker run --rm \
156
156
-e FUZZING_LANGUAGE=go -e SANITIZER=address \
157
157
-e CIFUZZ_DEBUG='True' -e OSS_FUZZ_PROJECT_NAME=fluxcd \
158
+ -v "$(shell go env GOMODCACHE):/root/go/pkg/mod" \
158
159
-v "$(BUILD_DIR)/fuzz/out":/out \
159
160
local-fuzzing:latest
160
161
You can’t perform that action at this time.
0 commit comments