File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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"
1012done
You can’t perform that action at this time.
0 commit comments