20 lines
260 B
YAML
20 lines
260 B
YAML
|
---
|
||
|
steps:
|
||
|
test_1:
|
||
|
image: "alpine"
|
||
|
commands:
|
||
|
- echo 'Test 1'
|
||
|
- sleep 10
|
||
|
|
||
|
test_2:
|
||
|
image: "alpine"
|
||
|
commands:
|
||
|
- echo 'Test 2'
|
||
|
- sleep 5
|
||
|
|
||
|
test_3:
|
||
|
image: "alpine"
|
||
|
commands:
|
||
|
- echo 'Test 3'
|
||
|
- sleep 5
|