Skip to content

Commit 69f1a72

Browse files
committed
all: imp ci scripts
1 parent d069cb8 commit 69f1a72

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docker/ci.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ make \
119119
exit_code="$(cat "${TEST_REPORTS_DIR}/test-exit-code.txt")"
120120
readonly exit_code
121121

122+
# TODO(d.kolyshev): Run go-fuzz and go-bench.
123+
122124
exit "$exit_code"
123125
EOF
124126

scripts/make/go-lint.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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 ./... || :

0 commit comments

Comments
 (0)