Skip to content

Instantly share code, notes, and snippets.

@BugRoger
Created June 18, 2015 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BugRoger/b2da8fddd388f9de4284 to your computer and use it in GitHub Desktop.
Save BugRoger/b2da8fddd388f9de4284 to your computer and use it in GitHub Desktop.
in
jobs:
- name: dashboard-build
serial: true
plan:
- get: dashboard.git
- do:
- task: a
privileged: true
config:
platform: linux
run:
path: /bin/sh
args:
- -c
- "pwd && ls && ls / && echo hi > hase && echo ha > /hase"
- task: b
privileged: true
config:
platform: linux
run:
path: /bin/sh
args:
- -c
- "pwd && ls && ls / && cat hase; cat /hase"
ref
60976be867835b0a0c2698123f1ce148edcd1645
dashboard.git
a
/tmp/build/src
bin etc lib linuxrc mnt proc run sys usr
dev home lib64 media opt root sbin tmp var
b
/tmp/build/src
bin etc lib linuxrc mnt proc run sys usr
dev home lib64 media opt root sbin tmp var
cat: can't open 'hase': No such file or directory
cat: can't open '/hase': No such file or directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment