Merge branch '8784-dir-listings'
[arvados.git] / sdk / cwl / tests / collection_per_tool / collection_per_tool_packed.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 cwlVersion: v1.0
6 $graph:
7 - class: Workflow
8   inputs: []
9   outputs: []
10   steps:
11   - in: []
12     out: []
13     run: '#step1.cwl'
14     id: '#main/step1'
15   - in: []
16     out: []
17     run: '#step2.cwl'
18     id: '#main/step2'
19   id: '#main'
20 - class: CommandLineTool
21   inputs:
22   - type: File
23     default:
24       class: File
25       location: keep:b9fca8bf06b170b8507b80b2564ee72b+57/a.txt
26     id: '#step1.cwl/a'
27   - type: File
28     default:
29       class: File
30       location: keep:b9fca8bf06b170b8507b80b2564ee72b+57/b.txt
31     id: '#step1.cwl/b'
32   outputs: []
33   arguments: [echo, $(inputs.a), $(inputs.b)]
34   id: '#step1.cwl'
35 - class: CommandLineTool
36   inputs:
37   - type: File
38     default:
39       class: File
40       location: keep:8e2d09a066d96cdffdd2be41579e4e2e+57/b.txt
41     id: '#step2.cwl/b'
42   - type: File
43     default:
44       class: File
45       location: keep:8e2d09a066d96cdffdd2be41579e4e2e+57/c.txt
46     id: '#step2.cwl/c'
47   outputs: []
48   arguments: [echo, $(inputs.c), $(inputs.b)]
49   id: '#step2.cwl'