File tree 3 files changed +31
-3
lines changed
3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 21
21
username :
22
22
from_secret : docker_hub_username
23
23
24
- - name : deploy
24
+ - name : simulate-main
25
25
image : alpine/k8s:1.23.17
26
26
volumes :
27
27
- name : test-result
31
31
from_secret : k8s_config
32
32
commands :
33
33
- mkdir -p $HOME/.kube && echo "$DRONE_KUBECONFIG" > $HOME/.kube/config
34
- - ./collect_summary .sh ${DRONE_BUILD_NUMBER}
34
+ - ./simulate_main .sh ${DRONE_BUILD_NUMBER}
35
35
- curl -s $URL > /test/summary.json
36
36
37
37
- name : test-ipc
@@ -122,6 +122,27 @@ steps:
122
122
commands :
123
123
- mina-simulator test --name network-checksum --summary-json /test/summary.json
124
124
125
+ - name : simulate-split
126
+ image : alpine/k8s:1.23.17
127
+ volumes :
128
+ - name : test-result
129
+ path : /test
130
+ environment :
131
+ DRONE_KUBECONFIG :
132
+ from_secret : k8s_config
133
+ commands :
134
+ - mkdir -p $HOME/.kube && echo "$DRONE_KUBECONFIG" > $HOME/.kube/config
135
+ - ./simulate_split.sh ${DRONE_BUILD_NUMBER}
136
+ - curl -s $URL > /test/summary-split.json
137
+
138
+ - name : test-split
139
+ image : vladsimplestakingcom/mina-tester-k:latest
140
+ volumes :
141
+ - name : test-result
142
+ path : /test
143
+ commands :
144
+ - mina-simulator test --name split --summary-json /test/summary-split.json
145
+
125
146
environment :
126
147
BLOCKS : 20
127
148
DELAY : 6
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
kubectl -n test-debugger delete job mock || true
6
- helm upgrade mina-debugger-test helm/tester --values=helm/tester/values.yaml --namespace=test-debugger --set=build_number=$1 --set=blocks=${BLOCKS} --set=delay=${DELAY} --set=parallelism=${PARALLElISM} --set=image.tag=" ${DRONE_COMMIT_SHA: 0: 8} "
6
+ helm upgrade mina-debugger-test helm/tester --values=helm/tester/values.yaml --namespace=test-debugger --set=build_number=$1 --set=blocks=${BLOCKS} --set=delay=${DELAY} --set=parallelism=${PARALLElISM} --set=image.tag=" ${DRONE_COMMIT_SHA: 0: 8} " --set=simulation= " peer-main "
7
7
sleep $(( ${BLOCKS} * ${DELAY} ))
8
8
kubectl -n test-debugger wait --for=condition=complete --timeout=120s job/mock || true
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ kubectl -n test-debugger delete job mock || true
6
+ helm upgrade mina-debugger-test helm/tester --values=helm/tester/values.yaml --namespace=test-debugger --set=build_number=$1 --set=blocks=${BLOCKS} --set=delay=${DELAY} --set=parallelism=${PARALLElISM} --set=image.tag=" ${DRONE_COMMIT_SHA: 0: 8} " --set=simulation=" peer-split"
7
+ kubectl -n test-debugger wait --for=condition=complete --timeout=600s job/mock || true
You can’t perform that action at this time.
0 commit comments