Skip to content

Commit c020009

Browse files
committed
run split simulation from drone CI
1 parent 3bb1288 commit c020009

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.drone.yml

+23-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
username:
2222
from_secret: docker_hub_username
2323

24-
- name: deploy
24+
- name: simulate-main
2525
image: alpine/k8s:1.23.17
2626
volumes:
2727
- name: test-result
@@ -31,7 +31,7 @@ steps:
3131
from_secret: k8s_config
3232
commands:
3333
- mkdir -p $HOME/.kube && echo "$DRONE_KUBECONFIG" > $HOME/.kube/config
34-
- ./collect_summary.sh ${DRONE_BUILD_NUMBER}
34+
- ./simulate_main.sh ${DRONE_BUILD_NUMBER}
3535
- curl -s $URL > /test/summary.json
3636

3737
- name: test-ipc
@@ -122,6 +122,27 @@ steps:
122122
commands:
123123
- mina-simulator test --name network-checksum --summary-json /test/summary.json
124124

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+
125146
environment:
126147
BLOCKS: 20
127148
DELAY: 6

collect_summary.sh simulate_main.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
set -e
44

55
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"
77
sleep $(( ${BLOCKS} * ${DELAY} ))
88
kubectl -n test-debugger wait --for=condition=complete --timeout=120s job/mock || true

simulate_split.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

0 commit comments

Comments
 (0)