gerrit: bt2: add dev and prod mode
[lttng-ci.git] / scripts / babeltrace / build.sh
index 8ef400830a81dc640b948d3658f928508561053b..da5f4ab96ff4ec1aa46a74e75ec5b97abbf72e66 100755 (executable)
@@ -74,6 +74,7 @@ arch=${arch:-}
 conf=${conf:-}
 build=${build:-}
 cc=${cc:-}
+bt2_mode=${bt2_mode:-}
 
 
 SRCDIR="$WORKSPACE/src/babeltrace"
@@ -197,9 +198,18 @@ cd "$SRCDIR"
 eval "$(grep '^PACKAGE_VERSION=' ./configure)"
 
 # Enable dev mode by default for BT 2.0 builds
-export BABELTRACE_DEBUG_MODE=1
-export BABELTRACE_DEV_MODE=1
-export BABELTRACE_MINIMAL_LOG_LEVEL=VERBOSE
+case "$bt2_mode" in
+dev)
+    echo "Developer mode"
+    export BABELTRACE_DEBUG_MODE=1
+    export BABELTRACE_DEV_MODE=1
+    export BABELTRACE_MINIMAL_LOG_LEVEL=VERBOSE
+    ;;
+*)
+    echo "Production mode (Default)"
+    export BABELTRACE_MINIMAL_LOG_LEVEL=INFO
+    ;;
+esac
 
 # Set configure options for each build configuration
 CONF_OPTS=""
This page took 0.022125 seconds and 4 git commands to generate.