| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- kind: Job
- apiVersion: batch/v1
- 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"
- 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
- - "bash /app/testing/spydk.sh && touch /app/testing/success"
- readinessProbe:
- exec:
- command:
- - test
- - -e
- - "/app/testing/success"
- initialDelaySeconds: 5
- periodSeconds: 5
- ---
- 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/tools/success"
- initialDelaySeconds: 5
- periodSeconds: 5
- ---
- kind: Job
- apiVersion: batch/v1
- metadata:
- name: ntt-accountant-ci-tests
- spec:
- backoffLimit: 0
- template:
- spec:
- restartPolicy: Never
- containers:
- - name: ntt-accountant-ci-tests
- image: wormchain-deploy
- command:
- - /bin/sh
- - -c
- - "bash /app/tools/test_ntt_accountant.sh && touch /app/tools/success"
- readinessProbe:
- exec:
- command:
- - test
- - -e
- - "/app/tools/success"
- initialDelaySeconds: 5
- periodSeconds: 5
- ---
- kind: Job
- apiVersion: batch/v1
- metadata:
- name: query-sdk-ci-tests
- spec:
- backoffLimit: 0
- template:
- spec:
- restartPolicy: Never
- containers:
- - name: query-sdk-ci-tests
- image: query-sdk-test-image
- command:
- - /bin/sh
- - -c
- - "bash /app/testing/querysdk.sh && touch /app/testing/success"
- readinessProbe:
- exec:
- command:
- - test
- - -e
- - "/app/testing/success"
- initialDelaySeconds: 5
- periodSeconds: 5
- ---
- kind: Job
- apiVersion: batch/v1
- metadata:
- name: custom-consistency-level-ci-tests
- spec:
- backoffLimit: 0
- template:
- spec:
- restartPolicy: Never
- containers:
- - name: custom-consistency-level-ci-tests
- image: sdk-test-image
- command:
- - /bin/sh
- - -c
- - "bash /app/testing/contract-integrations/custom_consistency_level/test_custom_consistency_level.sh && touch /app/testing/success"
- readinessProbe:
- exec:
- command:
- - test
- - -e
- - "/app/testing/success"
- initialDelaySeconds: 5
- periodSeconds: 5
- ---
|