Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion deploy/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ OPTIONS
--disable-java
Do not compile java programs (passes --disable-java to configure)

--disable-labview
Do not compile LabVIEW programs (passes --without-labview to configure)

--docker-srcdir=dir
Specify the directory to use inside the docker containers used to build
the code. If not specified the docker containers will use the
Expand Down Expand Up @@ -386,6 +389,9 @@ parsecmd() {
--disable-java)
CONFIGURE_PARAMS="$CONFIGURE_PARAMS --disable-java"
;;
--disable-labview)
CONFIGURE_PARAMS="$CONFIGURE_PARAMS --without-labview"
;;
--docker-srcdir=*)
eval "DOCKER_SRCDIR=${i#*=}"
;;
Expand Down Expand Up @@ -417,7 +423,7 @@ fi
#
if [ -r "${SRCDIR}/deploy/os/${OS}.opts" ]
then
os_opts=$(cat ${SRCDIR}/deploy/os/${OS}.opts)
os_opts=$(grep -v "#" ${SRCDIR}/deploy/os/${OS}.opts)
fi
#
# See if this build was triggered by a trigger job and use
Expand Down