Skip to content

Commit dbda0fa

Browse files
authored
Merge pull request #65 from broadinstitute/dp-trs-build
travis small tweaks
2 parents 75872c8 + 87476b5 commit dbda0fa

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

travis/build-dx.sh

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ for workflow in pipes/WDL/workflows/*.wdl; do
2424
workflow_name=`basename $workflow .wdl`
2525
echo "Building $workflow to DNAnexus: /build/$VERSION/$workflow_name"
2626

27-
test_input_json_wdl="test/input/WDL/test_inputs-$workflow_name-dnanexus.json"
28-
if [ -f "$test_input_json_wdl" ]; then
29-
CMD_INPUT="-inputs $test_input_json_wdl"
30-
# blank this out until we're sure we want to test it this way...
31-
CMD_INPUT=""
32-
else
33-
CMD_INPUT=""
34-
fi
35-
3627
defaults_json="pipes/dnax/dx-defaults-$workflow_name.json"
3728
if [ -f "$defaults_json" ]; then
3829
CMD_DEFAULTS="-defaults $defaults_json"
@@ -44,7 +35,8 @@ for workflow in pipes/WDL/workflows/*.wdl; do
4435
CMD_DEFAULTS+=" -extras $extras_json"
4536

4637
dx_id=$(java -jar dxWDL.jar compile \
47-
$workflow $CMD_INPUT $CMD_DEFAULTS -f -verbose \
38+
$workflow $CMD_DEFAULTS -f -verbose \
39+
-leaveWorkflowsOpen \
4840
-imports pipes/WDL/tasks/ \
4941
-project $DX_PROJECT \
5042
-destination /build/$VERSION/$workflow_name)

travis/dockstoreyml.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ for WDL in $*; do
77
echo " - name: $(basename $WDL .wdl)"
88
echo " subclass: WDL"
99
echo " primaryDescriptorPath: $WDL"
10+
echo " testParameterFiles:"
11+
echo " - empty.json"
1012
done

0 commit comments

Comments
 (0)