wormhole/devnet/tests.yaml

75 lines
1.7 KiB
YAML
Raw Normal View History

kind: Job
apiVersion: batch/v1
2022-07-14 13:54:02 -07:00
metadata:
name: sdk-ci-tests
spec:
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: sdk-ci-tests
image: sdk-test-image
command:
- /bin/sh
- -c
- "bash /app/testing/sdk.sh && touch /app/testing/success"
2022-07-14 13:54:02 -07:00
readinessProbe:
exec:
command:
- test
- -e
- "/app/testing/success"
initialDelaySeconds: 5
periodSeconds: 5
---
kind: Job
apiVersion: batch/v1
metadata:
name: spydk-ci-tests
spec:
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: spydk-ci-tests
image: spydk-test-image
command:
- /bin/sh
- -c
2023-06-16 05:59:36 -07:00
- "bash /app/testing/spydk.sh && touch /app/testing/success"
readinessProbe:
exec:
command:
- test
- -e
- "/app/testing/success"
initialDelaySeconds: 5
periodSeconds: 5
2023-01-27 12:48:19 -08:00
---
kind: Job
apiVersion: batch/v1
metadata:
name: accountant-ci-tests
spec:
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: accountant-ci-tests
image: wormchain-deploy
command:
- /bin/sh
- -c
- "bash /app/tools/test_accountant.sh && touch /app/tools/success"
readinessProbe:
exec:
command:
- test
- -e
- "/app/accountant/success"
initialDelaySeconds: 5
periodSeconds: 5