X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e2a7e3b3a65bdcf5b761bbe9e34eceac6a51ad89..fb96caaa6b4e00f61e5e5f7b4773c03bb30cf1bf:/sdk/cwl/tests/federation/cases/md5sum-tool-hint.cwl diff --git a/sdk/cwl/tests/federation/cases/md5sum-tool-hint.cwl b/sdk/cwl/tests/federation/cases/md5sum-tool-hint.cwl new file mode 100644 index 0000000000..726c33bbd8 --- /dev/null +++ b/sdk/cwl/tests/federation/cases/md5sum-tool-hint.cwl @@ -0,0 +1,24 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +cwlVersion: v1.0 +class: CommandLineTool +$namespaces: + arv: "http://arvados.org/cwl#" +requirements: + InlineJavascriptRequirement: {} +hints: + arv:ClusterTarget: + cluster_id: $(inputs.runOnCluster) +inputs: + inp: File + runOnCluster: string +outputs: + hash: + type: File + outputBinding: + glob: out.txt +stdin: $(inputs.inp.path) +stdout: out.txt +arguments: ["md5sum", "-"]