Update verify-typecheck.sh

pull/2140/head
Xinwei Xiong 2 years ago committed by GitHub
parent 40b305900f
commit 9c79019970
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -21,14 +21,7 @@ source "${OPENIM_ROOT}/scripts/lib/init.sh"
openim::golang::verify_go_version openim::golang::verify_go_version
BINS=(
typecheck
)
cd "${OPENIM_ROOT}" cd "${OPENIM_ROOT}"
# As of June, 2020 the typecheck tool is written in terms of go/packages, but
# that library doesn't work well with multiple modules. Until that is done,
# force this tooling to run in a fake GOPATH.
ret=0 ret=0
TYPECHECK_SERIAL="${TYPECHECK_SERIAL:-false}" TYPECHECK_SERIAL="${TYPECHECK_SERIAL:-false}"
scripts/run-in-gopath.sh \ scripts/run-in-gopath.sh \
@ -36,6 +29,6 @@ make tools.verify.typecheck
${OPENIM_ROOT}/_output/tools/typecheck "$@" "--serial=$TYPECHECK_SERIAL" || ret=$? ${OPENIM_ROOT}/_output/tools/typecheck "$@" "--serial=$TYPECHECK_SERIAL" || ret=$?
if [[ $ret -ne 0 ]]; then if [[ $ret -ne 0 ]]; then
openim::log::error "Type Check has failed. This may cause cross platform build failures." >&2 openim::log::error "Type Check has failed. This may cause cross platform build failures." >&2
openim::log::error "Please see https://github.com/openimsdk/open-im-server/tree/main/test/typecheck for more information." >&2 openim::log::error "Please see https://github.com/kubecub/typecheck for more information." >&2
exit 1 exit 1
fi fi

Loading…
Cancel
Save