2022-08-27 17:44:08 +02:00
|
|
|
services:
|
|
|
|
safe:
|
|
|
|
image: 'alpine'
|
2023-07-17 23:32:11 +02:00
|
|
|
init: true
|
2022-08-27 17:44:08 +02:00
|
|
|
command: ['/bin/sh', '-c', 'sleep infinity'] # never exiting
|
|
|
|
failure:
|
|
|
|
image: 'alpine'
|
2023-07-17 23:32:11 +02:00
|
|
|
init: true
|
|
|
|
command: ['/bin/sh', '-c', 'sleep 1 ; echo "exiting with error" ; exit 42']
|
2022-08-27 17:44:08 +02:00
|
|
|
test:
|
|
|
|
image: 'alpine'
|
2023-07-17 23:32:11 +02:00
|
|
|
init: true
|
2022-08-27 17:44:08 +02:00
|
|
|
command: ['/bin/sh', '-c', 'sleep 99999 ; echo "tests are OK"'] # very long job
|
|
|
|
depends_on: [safe]
|