summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorvkalintiris <vasilis@netdata.cloud>2023-11-21 21:42:59 +0200
committerGitHub <noreply@github.com>2023-11-21 21:42:59 +0200
commitb515c74228cab1ec6de17e003dea8e6cffc9f384 (patch)
tree2b1de97dfbdea5c0dc4d5d49ddbfb9b9948ee851 /netdata-installer.sh
parent7521dfae3ac436f39bbbd57909c60809c909900a (diff)
Add support for gorilla pages for tier 0. (#15969)
--------- Co-authored-by: Costa Tsaousis <costa@netdata.cloud>
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index b397e1486e..24d350f697 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -279,6 +279,7 @@ DONOTWAIT=0
NETDATA_PREFIX=
LIBS_ARE_HERE=0
NETDATA_ENABLE_ML=""
+NETDATA_ENABLE_GTESTS=0
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS-}"
RELEASE_CHANNEL="nightly" # valid values are 'nightly' and 'stable'
IS_NETDATA_STATIC_BINARY="${IS_NETDATA_STATIC_BINARY:-"no"}"
@@ -333,9 +334,13 @@ while [ -n "${1}" ]; do
NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--enable-ml)}" | sed 's/$/ --enable-ml/g')"
NETDATA_ENABLE_ML=1
;;
- "--disable-ml")
- NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--disable-ml)}" | sed 's/$/ --disable-ml/g')"
- NETDATA_ENABLE_ML=0
+ "--enable-gtests")
+ NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--enable-gtests)}" | sed 's/$/ --enable-gtests/g')"
+ NETDATA_ENABLE_GTESTS=1
+ ;;
+ "--disable-gtests")
+ NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--disable-gtests)}" | sed 's/$/ --disable-gtests/g')"
+ NETDATA_ENABLE_GTESTS=0
;;
"--disable-lto") NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--disable-lto)}" | sed 's/$/ --disable-lto/g')" ;;
"--disable-x86-sse") NETDATA_CONFIGURE_OPTIONS="$(echo "${NETDATA_CONFIGURE_OPTIONS%--disable-x86-sse)}" | sed 's/$/ --disable-x86-sse/g')" ;;