[ARVADOS] created: 1.1.4-296-g92ac046

Git user git at public.curoverse.com
Mon May 21 17:53:13 EDT 2018


        at  92ac046a8a7a0f5a3a88b8656bb171701af840a0 (commit)


commit 92ac046a8a7a0f5a3a88b8656bb171701af840a0
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date:   Mon May 21 17:39:16 2018 -0400

    13330: Fix test workflow.
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>

diff --git a/sdk/cwl/tests/makes_intermediates/echo.cwl b/sdk/cwl/tests/makes_intermediates/echo.cwl
index ee09eb7..5449bc3 100644
--- a/sdk/cwl/tests/makes_intermediates/echo.cwl
+++ b/sdk/cwl/tests/makes_intermediates/echo.cwl
@@ -9,5 +9,6 @@ requirements:
 inputs:
   inp1: File
   inp2: [File, Directory]
+  inp3: Directory
 outputs: []
 arguments: [echo, $(inputs.inp1), $(inputs.inp2), $(inputs.inp3)]

commit 5d340bee3506b37f0d5f0b695dfa37661ad0fbb6
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date:   Fri Apr 27 11:16:38 2018 -0400

    13330: Test workflow that generates intermediates.
    
    Also fixes file literal bug.
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>

diff --git a/sdk/cwl/tests/makes_intermediates/echo.cwl b/sdk/cwl/tests/makes_intermediates/echo.cwl
new file mode 100644
index 0000000..ee09eb7
--- /dev/null
+++ b/sdk/cwl/tests/makes_intermediates/echo.cwl
@@ -0,0 +1,13 @@
+class: CommandLineTool
+cwlVersion: v1.0
+requirements:
+  InitialWorkDirRequirement:
+    listing:
+      - $(inputs.inp1)
+      - $(inputs.inp2)
+      - $(inputs.inp3)
+inputs:
+  inp1: File
+  inp2: [File, Directory]
+outputs: []
+arguments: [echo, $(inputs.inp1), $(inputs.inp2), $(inputs.inp3)]
diff --git a/sdk/cwl/tests/makes_intermediates/hello1.txt b/sdk/cwl/tests/makes_intermediates/hello1.txt
new file mode 100644
index 0000000..e69de29
diff --git a/sdk/cwl/tests/makes_intermediates/run_in_single.cwl b/sdk/cwl/tests/makes_intermediates/run_in_single.cwl
new file mode 100644
index 0000000..bb596b2
--- /dev/null
+++ b/sdk/cwl/tests/makes_intermediates/run_in_single.cwl
@@ -0,0 +1,38 @@
+cwlVersion: v1.0
+class: Workflow
+$namespaces:
+  arv: "http://arvados.org/cwl#"
+requirements:
+  SubworkflowFeatureRequirement: {}
+inputs:
+  inp1:
+    type: File
+    default:
+      class: File
+      location: hello1.txt
+  inp2:
+    type: [File, Directory]
+    default:
+      class: File
+      basename: "hello2.txt"
+      contents: "Hello world"
+  inp3:
+    type: [File, Directory]
+    default:
+      class: Directory
+      basename: inp3
+      listing:
+        - class: File
+          basename: "hello3.txt"
+          contents: "hello world"
+outputs: []
+steps:
+  step1:
+    requirements:
+      arv:RunInSingleContainer: {}
+    in:
+      inp1: inp1
+      inp2: inp2
+      inp3: inp3
+    out: []
+    run: subwf.cwl
diff --git a/sdk/cwl/tests/makes_intermediates/subwf.cwl b/sdk/cwl/tests/makes_intermediates/subwf.cwl
new file mode 100644
index 0000000..1852ab4
--- /dev/null
+++ b/sdk/cwl/tests/makes_intermediates/subwf.cwl
@@ -0,0 +1,15 @@
+cwlVersion: v1.0
+class: Workflow
+inputs:
+  inp1: File
+  inp2: File
+  inp3: Directory
+outputs: []
+steps:
+  step1:
+    in:
+      inp1: inp1
+      inp2: inp2
+      inp3: inp3
+    out: []
+    run: echo.cwl

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list