Skip to content
Snippets Groups Projects

Need to set the variables to some defaults for web triggers

Merged Whitney Armstrong requested to merge fix_web_pipeline_trigger into master
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
+ 12
0
@@ -51,6 +51,18 @@ common:setup:
@@ -51,6 +51,18 @@ common:setup:
echo "JUGGLER_DETECTOR=$JUGGLER_DETECTOR" >> juggler.env
echo "JUGGLER_DETECTOR=$JUGGLER_DETECTOR" >> juggler.env
echo "JUGGLER_DETECTOR_VERSION=$JUGGLER_DETECTOR_VERSION" >> juggler.env
echo "JUGGLER_DETECTOR_VERSION=$JUGGLER_DETECTOR_VERSION" >> juggler.env
echo "COMMON_BENCH_VERSION=$COMMON_BENCH_VERSION" >> juggler.env
echo "COMMON_BENCH_VERSION=$COMMON_BENCH_VERSION" >> juggler.env
 
else
 
if [[ "${JUGGLER_DETECTOR}" == "" ]] ; then
 
export JUGGLER_DETECTOR="athena"
 
fi
 
if [[ "${JUGGLER_DETECTOR_VERSION}" == "" ]] ; then
 
export JUGGLER_DETECTOR_VERSION="master"
 
fi
 
echo "JUGGLER_DETECTOR = ${JUGGLER_DETECTOR}"
 
echo "JUGGLER_DETECTOR_VERSION = ${JUGGLER_DETECTOR_VERSION}"
 
echo "JUGGLER_DETECTOR=$JUGGLER_DETECTOR" >> juggler.env
 
echo "JUGGLER_DETECTOR_VERSION=$JUGGLER_DETECTOR_VERSION" >> juggler.env
 
echo "COMMON_BENCH_VERSION=$COMMON_BENCH_VERSION" >> juggler.env
fi
fi
- source setup/bin/env.sh && ./setup/bin/install_common.sh
- source setup/bin/env.sh && ./setup/bin/install_common.sh
Loading