test: persist between steps
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Settel 2022-11-05 21:51:38 +01:00
parent c8a4b6dad3
commit 4a72da223d

View File

@ -15,19 +15,15 @@ pipeline:
image: alpine:latest image: alpine:latest
commands: commands:
- date - date
- ls -l /mnt/ - ls -l
- date >/mnt/step1.txt - date >step1.txt
- ls -l /mnt/ - ls -l
volumes:
- /mnt:/mnt
step2: step2:
image: alpine:latest image: alpine:latest
commands: commands:
- date - date
- ls -l /mnt/ - ls -l
- date >/mnt/step2.txt - date >step2.txt
- ls -l /mnt/ - ls -l
volumes:
- /mnt:/mnt