[ARVADOS] updated: 1.1.4-47-g0c8acc1

Git user git at public.curoverse.com
Thu Apr 19 16:07:05 EDT 2018


Summary of changes:
 sdk/cwl/tests/wf/runin-reqs-wf.cwl  | 4 ++--
 sdk/cwl/tests/wf/runin-reqs-wf2.cwl | 4 ++--
 sdk/cwl/tests/wf/runin-reqs-wf3.cwl | 4 ++--
 sdk/cwl/tests/wf/runin-reqs-wf4.cwl | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

       via  0c8acc1f39413e5d9a429286dd4fd358201a48da (commit)
      from  6b7d586c08894d1f993445dbdb1cd8f0bbdbe9e5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 0c8acc1f39413e5d9a429286dd4fd358201a48da
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date:   Thu Apr 19 16:05:28 2018 -0400

    Make the runin-reqs less stingy about RAM refs #13301
    
    Tests were failing because it turns out 4 MB isn't enough to run Python!
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>

diff --git a/sdk/cwl/tests/wf/runin-reqs-wf.cwl b/sdk/cwl/tests/wf/runin-reqs-wf.cwl
index 9032e26..acaebb5 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf.cwl
@@ -31,7 +31,7 @@ steps:
     hints:
       - class: arv:RunInSingleContainer
       - class: ResourceRequirement
-        ramMin: $(inputs.count*4)
+        ramMin: $(inputs.count*128)
       - class: arv:APIRequirement
     scatter: count
     run:
@@ -55,4 +55,4 @@ steps:
                 type: int
               script: File
             outputs: []
-            arguments: [python, $(inputs.script), $(inputs.count * 4)]
+            arguments: [python, $(inputs.script), $(inputs.count * 128)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf2.cwl b/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
index cc1321a..5795759 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
@@ -41,7 +41,7 @@ steps:
       outputs: []
       hints:
         - class: ResourceRequirement
-          ramMin: $(inputs.count*4)
+          ramMin: $(inputs.count*128)
       steps:
         sleep1:
           in:
@@ -56,4 +56,4 @@ steps:
                 type: int
               script: File
             outputs: []
-            arguments: [python, $(inputs.script), $(inputs.count * 4)]
+            arguments: [python, $(inputs.script), $(inputs.count * 128)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf3.cwl b/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
index 92bf482..3accb32 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
@@ -50,10 +50,10 @@ steps:
             id: subtool
             hints:
               - class: ResourceRequirement
-                ramMin: $(inputs.count*4)
+                ramMin: $(inputs.count*128)
             inputs:
               count:
                 type: int
               script: File
             outputs: []
-            arguments: [python, $(inputs.script), $(inputs.count * 4)]
+            arguments: [python, $(inputs.script), $(inputs.count * 128)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf4.cwl b/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
index b7a9779..fc06fb3 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
@@ -50,10 +50,10 @@ steps:
             id: subtool
             hints:
               - class: ResourceRequirement
-                ramMin: 8
+                ramMin: 128
             inputs:
               count:
                 type: int
               script: File
             outputs: []
-            arguments: [python, $(inputs.script), "8"]
+            arguments: [python, $(inputs.script), "128"]

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list