X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/44c95f99098fa6c6acbfa82d4b6cbc6015eb6e39..093ec98e4a065acfc537ea22c08c337c115fe273:/sdk/cwl/tests/collection_per_tool/collection_per_tool_packed.cwl diff --git a/sdk/cwl/tests/collection_per_tool/collection_per_tool_packed.cwl b/sdk/cwl/tests/collection_per_tool/collection_per_tool_packed.cwl index 55944de21b..c934274fcb 100644 --- a/sdk/cwl/tests/collection_per_tool/collection_per_tool_packed.cwl +++ b/sdk/cwl/tests/collection_per_tool/collection_per_tool_packed.cwl @@ -2,48 +2,102 @@ # # SPDX-License-Identifier: Apache-2.0 -cwlVersion: v1.0 -$graph: -- class: Workflow - inputs: [] - outputs: [] - steps: - - in: [] - out: [] - run: '#step1.cwl' - id: '#main/step1' - - in: [] - out: [] - run: '#step2.cwl' - id: '#main/step2' - id: '#main' -- class: CommandLineTool - inputs: - - type: File - default: - class: File - location: keep:b9fca8bf06b170b8507b80b2564ee72b+57/a.txt - id: '#step1.cwl/a' - - type: File - default: - class: File - location: keep:b9fca8bf06b170b8507b80b2564ee72b+57/b.txt - id: '#step1.cwl/b' - outputs: [] - arguments: [echo, $(inputs.a), $(inputs.b)] - id: '#step1.cwl' -- class: CommandLineTool - inputs: - - type: File - default: - class: File - location: keep:8e2d09a066d96cdffdd2be41579e4e2e+57/b.txt - id: '#step2.cwl/b' - - type: File - default: - class: File - location: keep:8e2d09a066d96cdffdd2be41579e4e2e+57/c.txt - id: '#step2.cwl/c' - outputs: [] - arguments: [echo, $(inputs.c), $(inputs.b)] - id: '#step2.cwl' +{ + "$graph": [ + { + "class": "Workflow", + "hints": [ + { + "acrContainerImage": "999999999999999999999999999999d3+99", + "class": "http://arvados.org/cwl#WorkflowRunnerResources" + } + ], + "id": "#main", + "inputs": [], + "outputs": [], + "steps": [ + { + "id": "#main/step1", + "in": [], + "out": [], + "run": "#step1.cwl" + }, + { + "id": "#main/step2", + "in": [], + "out": [], + "run": "#step2.cwl" + } + ] + }, + { + "arguments": [ + "echo", + "$(inputs.a)", + "$(inputs.b)" + ], + "class": "CommandLineTool", + "id": "#step1.cwl", + "inputs": [ + { + "default": { + "basename": "a.txt", + "class": "File", + "location": "keep:b9fca8bf06b170b8507b80b2564ee72b+57/a.txt", + "nameext": ".txt", + "nameroot": "a" + }, + "id": "#step1.cwl/a", + "type": "File" + }, + { + "default": { + "basename": "b.txt", + "class": "File", + "location": "keep:b9fca8bf06b170b8507b80b2564ee72b+57/b.txt", + "nameext": ".txt", + "nameroot": "b" + }, + "id": "#step1.cwl/b", + "type": "File" + } + ], + "outputs": [] + }, + { + "arguments": [ + "echo", + "$(inputs.c)", + "$(inputs.b)" + ], + "class": "CommandLineTool", + "id": "#step2.cwl", + "inputs": [ + { + "default": { + "basename": "b.txt", + "class": "File", + "location": "keep:8e2d09a066d96cdffdd2be41579e4e2e+57/b.txt", + "nameext": ".txt", + "nameroot": "b" + }, + "id": "#step2.cwl/b", + "type": "File" + }, + { + "default": { + "basename": "c.txt", + "class": "File", + "location": "keep:8e2d09a066d96cdffdd2be41579e4e2e+57/c.txt", + "nameext": ".txt", + "nameroot": "c" + }, + "id": "#step2.cwl/c", + "type": "File" + } + ], + "outputs": [] + } + ], + "cwlVersion": "v1.0" +}