• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

taosdata / TDengine / #5006

29 Mar 2026 04:32AM UTC coverage: 72.274% (+0.1%) from 72.152%
#5006

push

travis-ci

web-flow
refactor: do some internal refactor for TDgpt. (#34955)

253711 of 351039 relevant lines covered (72.27%)

131490495.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

78.23
/source/dnode/snode/src/snode.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "executor.h"
17
#include "sndInt.h"
18
#include "stream.h"
19
#include "streamRunner.h"
20
#include "tdatablock.h"
21
#include "tuuid.h"
22

23
// clang-format off
24
#define sndError(...) do {  if (sndDebugFlag & DEBUG_ERROR) { taosPrintLog("SND ERROR ", DEBUG_ERROR, sndDebugFlag, __VA_ARGS__);}} while (0)
25
#define sndInfo(...)  do {  if (sndDebugFlag & DEBUG_INFO)  { taosPrintLog("SND INFO  ", DEBUG_INFO,  sndDebugFlag, __VA_ARGS__);}} while (0)
26
#define sndDebug(...) do {  if (sndDebugFlag & DEBUG_DEBUG) { taosPrintLog("SND DEBUG ", DEBUG_DEBUG, sndDebugFlag, __VA_ARGS__);}} while (0)
27

28
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
69,490✔
29
  int32_t code = 0;
69,490✔
30
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
69,490✔
31
  if (pSnode == NULL) {
69,490✔
32
    return NULL;
×
33
  }
34

35
  pSnode->msgCb = pOption->msgCb;
69,490✔
36

37
  return pSnode;
69,490✔
38
}
39

40
int32_t sndInit(SSnode *pSnode) {
69,490✔
41
  streamSetSnodeEnabled(&pSnode->msgCb);
69,490✔
42
  return 0;
69,490✔
43
}
44

45
void sndClose(SSnode *pSnode) {
69,490✔
46
  streamSetSnodeDisabled(false);
69,490✔
47
  taosMemoryFree(pSnode);
69,490✔
48
}
69,490✔
49

50
static int32_t handleTriggerCalcReq(SSnode* pSnode, void* pWorkerCb, SRpcMsg* pRpcMsg) {
2,507,675✔
51
  SSTriggerCalcRequest req = {0};
2,507,675✔
52
  SStreamRunnerTask* pTask = NULL;
2,507,893✔
53
  void* taskAddr = NULL;
2,507,893✔
54
  int32_t code = 0, lino = 0;
2,507,893✔
55
  TAOS_CHECK_EXIT(tDeserializeSTriggerCalcRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
2,507,893✔
56
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
2,507,893✔
57

58
  req.brandNew = true;
2,507,893✔
59
  req.execId = -1;
2,507,893✔
60
  pTask->msgCb = pSnode->msgCb;
2,507,893✔
61
  //pTask->pMsgCb = &pSnode->msgCb;
62
  pTask->pWorkerCb = pWorkerCb;
2,507,668✔
63
  req.curWinIdx = 0;
2,507,457✔
64
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &req));
2,507,457✔
65

66
_exit:
2,507,893✔
67

68
  tDestroySTriggerCalcRequest(&req);
2,507,893✔
69
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_TRIGGER_CALC_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
2,507,893✔
70
  if (rpcSendResponse(&rsp) != 0) {
2,507,675✔
71
    sndError("failed to send response, msg:%p", &rsp);
×
72
  }
73
  
74
  streamReleaseTask(taskAddr);
2,507,893✔
75

76
  if(code == TSDB_CODE_MND_STREAM_TABLE_NOT_CREATE) {
2,507,675✔
77
    code = 0; // not real error, just notify trigger the table is not created
×
78
  }
79

80
  if (code) {
2,507,675✔
81
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,570,032✔
82
  }
83
  
84
  return code;
2,507,675✔
85
}
86

87
static int32_t handleSyncDeleteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
2,979✔
88
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead));
2,979✔
89
  streamDeleteCheckPoint(streamId);
2,979✔
90
  return 0;
2,979✔
91
}
92

93
static int32_t handleSyncWriteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
6,981✔
94
  int32_t ver = *(int32_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + INT_BYTES);
6,981✔
95
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + 2 * INT_BYTES);
6,981✔
96
  SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_SYNC_CHECKPOINT_RSP, .info = pRpcMsg->info};
6,981✔
97

98
  stDebug("[checkpoint] handleSyncWriteCheckPointReq streamId:%" PRIx64 ",ver:%d", streamId, ver);
6,981✔
99
  void*   data = NULL;
6,981✔
100
  int64_t dataLen = 0;
6,981✔
101
  int32_t code = streamReadCheckPoint(streamId, &data, &dataLen);
6,981✔
102
  if (code != 0 || (errorIsFileNotExist(terrno) && ver == -1)) {
6,981✔
103
    goto end;
4,387✔
104
  }
105
  if (errorIsFileNotExist(terrno) || ver > *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
2,594✔
106
    int32_t ret = streamWriteCheckPoint(streamId, POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead));
2,039✔
107
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint local updated, ver:%d, dataLen:%" PRId64 ", ret:%d", streamId, ver, dataLen, ret);
2,039✔
108
  }
109
  if (errorIsFileNotExist(terrno) || ver >= *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
2,594✔
110
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint no need send back, ver:%d, dataLen:%" PRId64, streamId, ver, dataLen);
2,594✔
111
    dataLen = 0;
2,594✔
112
    taosMemoryFreeClear(data);
2,594✔
113
  }
114
  
115
end:
6,981✔
116
  if (data == NULL) {
6,981✔
117
    rsp.contLen = 2 * INT_BYTES + LONG_BYTES;
6,981✔
118
    rsp.pCont = rpcMallocCont(rsp.contLen);
6,981✔
119
    if (rsp.pCont == NULL) {
6,981✔
120
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
121
    } else {
122
      *(int32_t*)(POINTER_SHIFT(rsp.pCont, INT_BYTES)) = -1;  // no checkpoint
6,981✔
123
      *(int64_t*)(POINTER_SHIFT(rsp.pCont, 2 * INT_BYTES)) = streamId;
6,981✔
124
    }
125
  } else {
126
    rsp.pCont = rpcMallocCont(dataLen);
×
127
    if (rsp.pCont == NULL) {
×
128
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
129
    } else {
130
      memcpy(rsp.pCont, data, dataLen);
×
131
      rsp.contLen = dataLen;
×
132
      taosMemoryFreeClear(data); 
×
133
    } 
134
  }
135
  
136
  if (rpcSendResponse(&rsp) != 0) {
6,981✔
137
    sndError("failed to send write checkpoint response, msg:%p", &rsp);
×
138
  }
139

140
  return 0;
6,981✔
141
}
142

143
static int32_t handleSyncWriteCheckPointRsp(SSnode* pSnode, SRpcMsg* pRpcMsg) {
6,968✔
144
  if (pRpcMsg->code != 0) {
6,968✔
145
    stError("[checkpoint] handleSyncWriteCheckPointRsp, code:%d, msgType:%d", pRpcMsg->code, pRpcMsg->msgType);
×
146
    return pRpcMsg->code;
×
147
  } 
148
  void* data = pRpcMsg->pCont;
6,968✔
149
  int32_t dataLen = pRpcMsg->contLen;
6,968✔
150
  
151
  int32_t ver = *(int32_t*)(POINTER_SHIFT(data, INT_BYTES));
6,968✔
152
  int64_t streamId = *(int64_t*)(POINTER_SHIFT(data, 2 * INT_BYTES));
6,968✔
153
  stDebug("[checkpoint] handleSyncWriteCheckPointRsp, ver:%d, streamId:%"PRIx64",dataLen:%d", 
6,968✔
154
    ver, streamId, dataLen);
155

156
  if (ver != -1){
6,968✔
157
    (void)streamWriteCheckPoint(streamId, data, dataLen);
×
158
  }
159
  return streamCheckpointSetReady(streamId);
6,968✔
160
}
161

162
static int32_t buildStreamFetchRsp(SSDataBlock* pBlock, void** data, size_t* size, int8_t precision, bool finished) {
7,287,472✔
163
  int32_t code = 0;
7,287,472✔
164
  int32_t lino = 0;
7,287,472✔
165
  void*   buf =  NULL;
7,287,472✔
166

167
  int32_t blockSize = pBlock == NULL ? 0 : blockGetInternalEncodeSize(pBlock);
7,287,472✔
168
  size_t dataEncodeBufSize = sizeof(SRetrieveTableRsp) + INT_BYTES * 2 + blockSize;
7,287,472✔
169
  buf = rpcMallocCont(dataEncodeBufSize);
7,287,472✔
170
  if (!buf) {
7,287,472✔
171
    code = terrno;
×
172
    goto end;
×
173
  }
174

175
  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
7,287,472✔
176
  pRetrieve->version = 0;
7,287,472✔
177
  pRetrieve->precision = precision;
7,287,472✔
178
  pRetrieve->compressed = 0;
7,287,472✔
179
  *((int32_t*)(pRetrieve->data)) = blockSize;
7,287,472✔
180
  *((int32_t*)(pRetrieve->data + INT_BYTES)) = blockSize;
7,287,472✔
181
  if (pBlock == NULL || pBlock->info.rows == 0) {
7,287,472✔
182
    pRetrieve->numOfRows = 0;
3,016,813✔
183
    pRetrieve->numOfBlocks = 0;
3,016,813✔
184
    pRetrieve->completed = 1;
3,016,813✔
185
  } else {
186
    pRetrieve->numOfRows = htobe64((int64_t)pBlock->info.rows);
4,270,659✔
187
    pRetrieve->numOfBlocks = htonl(1);
4,270,659✔
188

189
    uint32_t numOfCols = (uint32_t)taosArrayGetSize(pBlock->pDataBlock);
4,270,659✔
190
    pRetrieve->numOfCols = htonl(numOfCols);
4,270,659✔
191

192
    int32_t actualLen = blockEncodeInternal(pBlock, pRetrieve->data + INT_BYTES * 2, blockSize, numOfCols);
4,270,659✔
193
    if (actualLen < 0) {
4,270,429✔
194
      code = terrno;
×
195
      goto end;
×
196
    }
197
  }
198
  if (finished) {
7,287,242✔
199
    pRetrieve->completed = 1;
2,937,116✔
200
  }
201

202
  *data = buf;
7,287,472✔
203
  *size = dataEncodeBufSize;
7,287,472✔
204
  buf = NULL;
7,287,472✔
205

206
end:
7,287,472✔
207
  rpcFreeCont(buf);
7,287,472✔
208
  return code;
7,287,242✔
209
}
210

211
static int32_t handleStreamFetchData(SSnode* pSnode, void *pWorkerCb, SRpcMsg* pRpcMsg) {
2,797,500✔
212
  int32_t code = 0, lino = 0;
2,797,500✔
213
  void* taskAddr = NULL;
2,797,500✔
214
  SResFetchReq req = {0};
2,797,500✔
215
  SSTriggerCalcRequest calcReq = {0};
2,797,500✔
216
  SStreamRunnerTask* pTask = NULL;
2,797,500✔
217
  void* buf = NULL;
2,797,500✔
218
  size_t size = 0;
2,797,500✔
219

220
  stDebug("handleStreamFetchData, msgType:%s, contLen:%d 0x%" PRIx64 ":0x%" PRIx64, 
2,797,500✔
221
      TMSG_INFO(pRpcMsg->msgType), pRpcMsg->contLen, TRACE_GET_ROOTID(&pRpcMsg->info.traceId), TRACE_GET_MSGID(&pRpcMsg->info.traceId));
222
  
223
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont,pRpcMsg->contLen, &req));
2,797,500✔
224

225
  calcReq.streamId = req.queryId;
2,797,261✔
226
  calcReq.runnerTaskId = req.taskId;
2,797,261✔
227
  calcReq.brandNew = req.reset;
2,797,261✔
228
  calcReq.execId = req.execId;
2,797,261✔
229
  if (req.pStRtFuncInfo) {
2,797,261✔
230
    calcReq.sessionId = req.pStRtFuncInfo->sessionId;
2,797,261✔
231
    calcReq.triggerType = req.pStRtFuncInfo->triggerType;
2,797,261✔
232
    calcReq.isWindowTrigger = req.pStRtFuncInfo->isWindowTrigger;
2,797,022✔
233
    calcReq.precision = req.pStRtFuncInfo->precision;
2,797,261✔
234
    TSWAP(calcReq.groupColVals, req.pStRtFuncInfo->pStreamPartColVals);
2,797,500✔
235
    TSWAP(calcReq.params, req.pStRtFuncInfo->pStreamPesudoFuncVals);
2,797,022✔
236
    calcReq.gid = req.pStRtFuncInfo->groupId;
2,797,261✔
237
    calcReq.curWinIdx = req.pStRtFuncInfo->curIdx;
2,797,500✔
238
  }
239
  calcReq.pOutBlock = NULL;
2,797,261✔
240

241
  TAOS_CHECK_EXIT(streamAcquireTask(calcReq.streamId, calcReq.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
2,797,261✔
242

243
  pTask->msgCb = pSnode->msgCb;
2,797,261✔
244
  //pTask->pMsgCb = &pSnode->msgCb;
245
  pTask->pWorkerCb = pWorkerCb;
2,797,261✔
246
  
247
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &calcReq));
2,797,261✔
248

249
  TAOS_CHECK_EXIT(buildStreamFetchRsp(calcReq.pOutBlock, &buf, &size, 0, false));
2,797,500✔
250

251
_exit:
2,797,500✔
252

253
  tDestroySTriggerCalcRequest(&calcReq);
2,797,500✔
254
  tDestroySResFetchReq(&req);
2,797,500✔
255
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_RUNNER_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
2,797,500✔
256
  tmsgSendRsp(&rsp);
2,797,500✔
257
  
258
  streamReleaseTask(taskAddr);
2,797,500✔
259

260
  if (code) {
2,797,500✔
261
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
262
  }
263
  
264
  return code;
2,797,500✔
265
}
266

267
static int32_t handleStreamFetchFromCache(SSnode* pSnode, SRpcMsg* pRpcMsg) {
4,489,972✔
268
  int32_t code = 0, lino = 0;
4,489,972✔
269
  SResFetchReq req = {0};
4,489,972✔
270
  SStreamCacheReadInfo readInfo = {0};
4,489,972✔
271
  void* buf = NULL;
4,489,972✔
272
  int64_t streamId = 0;
4,489,972✔
273
  size_t size = 0;
4,489,972✔
274
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont, pRpcMsg->contLen, &req));
4,489,972✔
275

276
  streamId = req.queryId;
4,489,972✔
277
  readInfo.taskInfo.streamId = req.queryId;
4,489,972✔
278
  readInfo.taskInfo.taskId = req.taskId;
4,489,972✔
279
  readInfo.taskInfo.sessionId = req.pStRtFuncInfo->sessionId;
4,489,972✔
280
  readInfo.gid = req.pStRtFuncInfo->groupId;
4,489,972✔
281
  //SSTriggerCalcParam* pParam = taosArrayGet(req.pStRtFuncInfo->pStreamPesudoFuncVals, req.pStRtFuncInfo->curIdx);
282
  readInfo.start = req.pStRtFuncInfo->curWindow.skey;
4,489,972✔
283
  readInfo.end = req.pStRtFuncInfo->curWindow.ekey;
4,489,972✔
284
  bool finished;
4,488,652✔
285
  TAOS_CHECK_EXIT(stRunnerFetchDataFromCache(&readInfo,&finished));
4,489,972✔
286

287
  TAOS_CHECK_EXIT(buildStreamFetchRsp(readInfo.pBlock, &buf, &size, 0, finished));
4,489,972✔
288

289
_exit:
4,489,742✔
290

291
  printDataBlock(readInfo.pBlock, __func__, "fetchFromCache", streamId);
4,489,742✔
292

293
  stsDebug("task %" PRIx64 " TDMT_STREAM_FETCH_FROM_CACHE_RSP with code:%d rows:%" PRId64 ", size:%d, time range:[%" PRId64 ", %" PRId64 "]", 
4,489,742✔
294
      req.taskId, code, readInfo.pBlock ? readInfo.pBlock->info.rows : 0, (int32_t)size, readInfo.start, readInfo.end);  
295
      
296
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_CACHE_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
4,489,742✔
297
  tmsgSendRsp(&rsp);
4,489,742✔
298

299
  if (code) {
4,489,972✔
300
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
301
  }
302

303
  blockDataDestroy(readInfo.pBlock);
4,489,972✔
304
  tDestroySResFetchReq(&req);
4,489,972✔
305
  
306
  return code;
4,489,742✔
307
}
308

309
static void sndSendErrorRrsp(SRpcMsg *pMsg, int32_t errCode) {
×
310
  SRpcMsg             rspMsg = {0};
×
311

312
  rspMsg.info = pMsg->info;
×
313
  rspMsg.pCont = NULL;
×
314
  rspMsg.contLen = 0;
×
315
  rspMsg.code = errCode;
×
316
  rspMsg.msgType = pMsg->msgType;
×
317

318
  tmsgSendRsp(&rspMsg);
×
319
}
×
320

321
static int32_t handleStreamDropTableReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
×
322
  SSTriggerDropRequest req = {0};
×
323
  SStreamRunnerTask* pTask = NULL;
×
324
  void* taskAddr = NULL;
×
325
  int32_t code = 0, lino = 0;
×
326
  TAOS_CHECK_EXIT(tDeserializeSTriggerDropTableRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
×
327
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
×
328
  
329
  pTask->msgCb = pSnode->msgCb;
×
330
  TAOS_CHECK_EXIT(stRunnerTaskDropTable(pTask, &req));
×
331

332
_exit:
×
333
  tDestroySSTriggerDropRequest(&req);
×
334
  if (code) {
×
335
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
336
    sndSendErrorRrsp(pRpcMsg, code);
×
337
  } else {
338
    SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_TRIGGER_DROP_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
×
339
    tmsgSendRsp(&rsp);
×
340
  }
341
  streamReleaseTask(taskAddr);
×
342

343
  return code;
×
344
}
345

346

347
int32_t sndProcessStreamMsg(SSnode *pSnode, void *pWorkerCb, SRpcMsg *pMsg) {
9,812,293✔
348
  int32_t code = 0, lino = 0;
9,812,293✔
349
  switch (pMsg->msgType) {
9,812,293✔
350
    case TDMT_STREAM_TRIGGER_CALC:
2,507,893✔
351
      TAOS_CHECK_EXIT(handleTriggerCalcReq(pSnode, pWorkerCb, pMsg));
2,507,893✔
352
      break;
937,861✔
353
    case TDMT_STREAM_DELETE_CHECKPOINT:
2,979✔
354
      TAOS_CHECK_EXIT(handleSyncDeleteCheckPointReq(pSnode, pMsg));
2,979✔
355
      break;
2,979✔
356
    case TDMT_STREAM_SYNC_CHECKPOINT:
6,981✔
357
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointReq(pSnode, pMsg));
6,981✔
358
      break;
6,981✔
359
    case TDMT_STREAM_SYNC_CHECKPOINT_RSP:
6,968✔
360
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointRsp(pSnode, pMsg));
6,968✔
361
      break;
4,378✔
362
    case TDMT_STREAM_FETCH_FROM_RUNNER:
2,797,500✔
363
      TAOS_CHECK_EXIT(handleStreamFetchData(pSnode, pWorkerCb, pMsg));
2,797,500✔
364
      break;
2,797,500✔
365
    case TDMT_STREAM_FETCH_FROM_CACHE:
4,489,972✔
366
      TAOS_CHECK_EXIT(handleStreamFetchFromCache(pSnode, pMsg));
4,489,972✔
367
      break;
4,489,742✔
368
      case TDMT_STREAM_TRIGGER_DROP:
×
369
     TAOS_CHECK_EXIT(handleStreamDropTableReq(pSnode, pMsg));
×
370
      break;
×
371
    default:
×
372
      sndError("invalid snode msg:%d", pMsg->msgType);
×
373
      TAOS_CHECK_EXIT(TSDB_CODE_INVALID_MSG);
×
374
  }
375

376
_exit:
×
377

378
  if (code) {
9,812,063✔
379
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,572,622✔
380
  }
381
  
382
  return code;
9,812,063✔
383
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc