implement basic exec [ci skip]

This commit is contained in:
Brad Rydzewski
2019-10-22 15:21:57 -07:00
parent 00df09b842
commit 4d3f9c66af
24 changed files with 304 additions and 60 deletions

21
engine/testdata/workspace_default.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
kind: pipeline
type: docker
name: default
clone:
disable: true
steps:
- name: write
pull: if-not-exists
image: alpine
commands:
- echo "hello" > greetings.txt
- df -T /drone/src
- name: read
pull: if-not-exists
image: alpine
commands:
- pwd
- cat greetings.txt