File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ make \
119119exit_code="$(cat " ${TEST_REPORTS_DIR}/test-exit-code.txt")"
120120readonly exit_code
121121
122+ # TODO(d.kolyshev): Run go-fuzz and go-bench.
123+
122124exit "$exit_code"
123125EOF
124126
Original file line number Diff line number Diff line change @@ -155,7 +155,10 @@ run_linter "${GO:-go}" vet ./...
155155# is updated constantly. If a stricly reproducible lint is desired, for example
156156# for Docker lint stages, set IGNORE_NON_REPRODUCIBLE to 1 to ignore the exit
157157# code from govulncheck.
158- if [ " ${IGNORE_NON_REPRODUCIBLE:- 0} " -gt ' 0' ]; then
158+ #
159+ # TODO(a.garipov): Return the default to 0 and update the Go version once
160+ # https://github.com/quic-go/quic-go/issues/5543 is fixed.
161+ if [ " ${IGNORE_NON_REPRODUCIBLE:- 1} " -gt ' 0' ]; then
159162 # run_linter calls set +e, so don't mind the cancelling effect of ||.
160163 # shellcheck disable=SC2310
161164 run_linter govulncheck ./... || :
You can’t perform that action at this time.
0 commit comments