File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 98
98
99
99
- name : Prepare SLO Database
100
100
run : |
101
+ sleep 60
101
102
./tests/slo/.bin/${{matrix.sdk.id}}_linux_amd64 create grpc://localhost:2136 /Root/testdb
102
103
103
104
- name : Run SLO Tests
@@ -111,6 +112,30 @@ jobs:
111
112
-read-timeout 1000 \
112
113
-write-timeout 1000 || true
113
114
115
+ - if : always()
116
+ name : Store ydb healthcheck
117
+ run : |
118
+ curl -ik http://localhost:8765/healthcheck > ydb-healthcheck.log
119
+
120
+ - if : always()
121
+ uses : actions/upload-artifact@v4
122
+ with :
123
+ name : ${{matrix.sdk.name}}-ydb-healthcheck.log
124
+ path : ./ydb-healthcheck.log
125
+ retention-days : 1
126
+
127
+ - if : always()
128
+ name : Store ydb logs
129
+ run : |
130
+ docker compose -f .slo/compose.ydb.yaml logs > ydb.log
131
+
132
+ - if : always()
133
+ uses : actions/upload-artifact@v4
134
+ with :
135
+ name : ${{matrix.sdk.name}}-ydb.log
136
+ path : ./ydb.log
137
+ retention-days : 1
138
+
114
139
- if : always()
115
140
name : Store ydb chaos testing logs
116
141
run : |
@@ -123,7 +148,7 @@ jobs:
123
148
path : ./chaos-ydb.log
124
149
retention-days : 1
125
150
126
- - if : always ()
151
+ - if : success ()
127
152
name : Cleanup SLO Database
128
153
run : |
129
154
./tests/slo/.bin/${{matrix.sdk.id}}_linux_amd64 cleanup grpc://localhost:2136 /Root/testdb || true
You can’t perform that action at this time.
0 commit comments