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

25
engine/testdata/workspace_legacy.yml vendored Normal file
View File

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