File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,30 @@ jobs:
111
111
-read-timeout 1000 \
112
112
-write-timeout 1000 || true
113
113
114
+ - if : always()
115
+ name : Store ydb healthcheck
116
+ run : |
117
+ curl -ik http://localhost:8765/healthcheck > ydb-healthcheck.log
118
+
119
+ - if : always()
120
+ uses : actions/upload-artifact@v4
121
+ with :
122
+ name : ${{matrix.sdk.name}}-ydb-healthcheck.log
123
+ path : ./ydb-healthcheck.log
124
+ retention-days : 1
125
+
126
+ - if : always()
127
+ name : Store ydb logs
128
+ run : |
129
+ docker compose -f .slo/compose.ydb.yaml logs > ydb.log
130
+
131
+ - if : always()
132
+ uses : actions/upload-artifact@v4
133
+ with :
134
+ name : ${{matrix.sdk.name}}-ydb.log
135
+ path : ./ydb.log
136
+ retention-days : 1
137
+
114
138
- if : always()
115
139
name : Store ydb chaos testing logs
116
140
run : |
@@ -123,7 +147,7 @@ jobs:
123
147
path : ./chaos-ydb.log
124
148
retention-days : 1
125
149
126
- - if : always ()
150
+ - if : success ()
127
151
name : Cleanup SLO Database
128
152
run : |
129
153
./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