Slide 44
Slide 44 text
---
jobs:
- name: job-build
plan:
- task: step-1
...
outputs:
- name: shared-dir
run:
path: sh
args:
- -exc
- |
echo “test” > shared-dir/hello.txt
- task: step-2
...
inputs:
- name: shared-dir
run:
path: sh
args:
- -exc
- |
ls shared-dir && cat shared-dir/hello.txt
3. There is the directory
shared-dir in the container,
with inputs data (file hello.txt)
4. Demonstrate that we
have access to a file,
created in previous task (in
another container!)