We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a128327 commit 9292a8cCopy full SHA for 9292a8c
hack/lib/util/golang.sh
@@ -11,7 +11,8 @@ function os::golang::verify_go_version() {
11
if [[ "${go_version[2]}" != go1.8* ]]; then
12
os::log::info "Detected go version: ${go_version[*]}."
13
if [[ -z "${PERMISSIVE_GO:-}" ]]; then
14
- os::log::fatal "Please install Go version ${OS_REQUIRED_GO_VERSION} or use PERMISSIVE_GO=y to bypass this check."
+ os::log::warning "Please install Go version ${OS_REQUIRED_GO_VERSION} or use PERMISSIVE_GO=y to bypass this check."
15
+ return 0
16
else
17
os::log::warning "Detected golang version doesn't match required Go version."
18
os::log::warning "This version mismatch could lead to differences in execution between this run and the CI systems."
0 commit comments