14198: Federation feature and testing
[arvados.git] / sdk / cwl / tests / federation / cases / base-case.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 cwlVersion: v1.0
6 class: Workflow
7 $namespaces:
8   arv: "http://arvados.org/cwl#"
9 requirements:
10   InlineJavascriptRequirement: {}
11   DockerRequirement:
12     dockerPull: arvados/fed-test:base-case
13   arv:ClusterTarget:
14     cluster_id: $(inputs.runOnCluster)
15 inputs:
16   inp:
17     type: File
18     inputBinding: {}
19   runOnCluster: string
20 outputs:
21   hash:
22     type: File
23     outputSource: md5sum/hash
24 steps:
25   md5sum:
26     in:
27       inp: inp
28     out: [hash]
29     run: md5sum.cwl