disable opentelemetry on arm (#7831)
This commit is contained in:
parent
21bab108f4
commit
eb482db5b3
1 changed files with 4 additions and 1 deletions
|
@ -137,12 +137,15 @@ export BUILD_PATH=/tmp/build
|
||||||
|
|
||||||
ARCH=$(uname -m)
|
ARCH=$(uname -m)
|
||||||
|
|
||||||
export USE_OPENTELEMETRY=true
|
|
||||||
if [[ ${ARCH} == "s390x" ]]; then
|
if [[ ${ARCH} == "s390x" ]]; then
|
||||||
export LUAJIT_VERSION=9d5750d28478abfdcaefdfdc408f87752a21e431
|
export LUAJIT_VERSION=9d5750d28478abfdcaefdfdc408f87752a21e431
|
||||||
export LUA_RESTY_CORE=0.1.17
|
export LUA_RESTY_CORE=0.1.17
|
||||||
export LUA_NGX_VERSION=0.10.15
|
export LUA_NGX_VERSION=0.10.15
|
||||||
export LUA_STREAM_NGX_VERSION=0.0.7
|
export LUA_STREAM_NGX_VERSION=0.0.7
|
||||||
|
fi
|
||||||
|
|
||||||
|
export USE_OPENTELEMETRY=true
|
||||||
|
if [[ ${ARCH} == "s390x" ]] || [[ ${ARCH} == "armv7l" ]]; then
|
||||||
export USE_OPENTELEMETRY=false
|
export USE_OPENTELEMETRY=false
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue