2.12. Environment Variables#
Tools run in a restricted environment and do not inherit most environment
variables from the parent process. You can set environment variables for
the tool using EnvVarRequirement
.
#!/usr/bin/env cwl-runner
cwlVersion: v1.2
class: CommandLineTool
baseCommand: env
requirements:
EnvVarRequirement:
envDef:
HELLO: $(inputs.message)
inputs:
message: string
outputs:
example_out:
type: stdout
stdout: output.txt
message: Hello world!
Now invoke cwltool
with the tool description and the input object on the
command line:
$ cwltool env.cwl echo-job.yml
INFO /opt/hostedtoolcache/Python/3.9.19/x64/bin/cwltool 3.1.20240508115724
INFO Resolved 'env.cwl' to 'file:///home/runner/work/user_guide/user_guide/src/_includes/cwl/environment-variables/env.cwl'
INFO [job env.cwl] /tmp/srxvey5e$ env > /tmp/srxvey5e/output.txt
INFO [job env.cwl] completed success
{
"example_out": {
"location": "file:///home/runner/work/user_guide/user_guide/src/_includes/cwl/environment-variables/output.txt",
"basename": "output.txt",
"class": "File",
"checksum": "sha1$ae479ad2e1b5d6792e3e02a5907aa60b9e603c3e",
"size": 407,
"path": "/home/runner/work/user_guide/user_guide/src/_includes/cwl/environment-variables/output.txt"
}
}INFO Final process status is success
$ cat output.txt
HOME=/tmp/srxvey5e
TMPDIR=/tmp/qybvt_52
PATH=/opt/hostedtoolcache/Python/3.9.19/x64/bin:/opt/hostedtoolcache/Python/3.9.19/x64:/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
HELLO=Hello world!