• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #5032

24 Apr 2026 11:25AM UTC coverage: 73.076% (+0.2%) from 72.876%
#5032

push

travis-ci

web-flow
merge: from main to 3.0 branch #35224

merge: from main to 3.0 branch[manual-only]

1344 of 1975 new or added lines in 48 files covered. (68.05%)

527 existing lines in 138 files now uncovered.

275965 of 377640 relevant lines covered (73.08%)

132797765.0 hits per line

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

82.11
/source/libs/executor/src/querytask.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 "filter.h"
17
#include "function.h"
18
#include "functionMgt.h"
19
#include "os.h"
20
#include "querynodes.h"
21
#include "tfill.h"
22
#include "tname.h"
23

24
#include "tdatablock.h"
25
#include "tmsg.h"
26
#include "streamMsg.h"
27

28
#include "executorInt.h"
29
#include "index.h"
30
#include "operator.h"
31
#include "query.h"
32
#include "querytask.h"
33
#include "storageapi.h"
34
#include "thash.h"
35
#include "ttypes.h"
36
#include "tref.h"
37

38
#define CLEAR_QUERY_STATUS(q, st) ((q)->status &= (~(st)))
39

40
int32_t doCreateTask(uint64_t queryId, uint64_t taskId, int32_t vgId, EOPTR_EXEC_MODEL model, SStorageAPI* pAPI,
376,110,533✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
376,110,533✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
376,110,533✔
47
  if (p == NULL) {
376,063,973✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
376,063,973✔
52
  p->cost.created = taosGetTimestampUs();
376,121,820✔
53

54
  p->execModel = model;
376,120,814✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
376,096,114✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
376,074,225✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
376,061,932✔
UNCOV
58
    doDestroyTask(p);
×
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
376,103,208✔
63
  taosInitRWLatch(&p->lock);
376,088,701✔
64

65
  p->id.vgId = vgId;
376,089,199✔
66
  p->id.queryId = queryId;
376,093,158✔
67
  p->id.taskId = taskId;
376,091,218✔
68
  p->id.str = taosMemoryMalloc(64);
376,094,467✔
69
  if (p->id.str == NULL) {
376,024,046✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
376,082,636✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
376,052,689✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
376,043,017✔
77
    doDestroyTask(p);
581✔
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
376,074,598✔
82
  return TSDB_CODE_SUCCESS;
376,076,914✔
83
}
84

85
int32_t getTaskCode(void* pTaskInfo) { return ((SExecTaskInfo*)pTaskInfo)->code; }
16,704✔
86

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
2,147,483,647✔
88

89
void setTaskKilled(SExecTaskInfo* pTaskInfo, int32_t rspCode) {
115,850✔
90
  pTaskInfo->code = rspCode;
115,850✔
91
  (void)stopTableScanOperator(pTaskInfo->pRoot, pTaskInfo->id.str, &pTaskInfo->storageAPI);
115,850✔
92
}
115,850✔
93

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,291,315,370✔
95
  if (status == TASK_NOT_COMPLETED) {
1,291,315,370✔
96
    pTaskInfo->status = status;
376,272,879✔
97
  } else {
98
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
99
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
915,042,491✔
100
    pTaskInfo->status |= status;
915,056,307✔
101
  }
102
}
1,291,326,034✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
42,676,581✔
106
  int32_t code = 0, lino = 0;
42,676,581✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
42,676,581✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
42,676,572✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
42,671,386✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
42,679,452✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
42,679,443✔
115
  ctx->taskId = pTaskInfo->id.taskId;
42,674,842✔
116
  ctx->idStr = pTaskInfo->id.str;
42,680,595✔
117
  ctx->pTaskInfo = pTaskInfo;
42,671,964✔
118
  ctx->subEndPoints = *subEndPoints;
42,681,171✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
42,672,540✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
42,679,450✔
121

122
  *subEndPoints = NULL;
42,680,026✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
42,680,026✔
125
  if (NULL == ctx->subResNodes) {
42,680,028✔
126
    qError("%s taosArrayInit_s %d subResNodes failed, error:%s", GET_TASKID(pTaskInfo), subJobNum, tstrerror(terrno));
×
127
    TSDB_CHECK_NULL(ctx->subResNodes, code, lino, _exit, terrno);
×
128
  }
129
  
130
  TAOS_CHECK_EXIT(tsem_init(&ctx->ready, 0, 0));
42,679,461✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
42,668,535✔
133
  if (refId < 0) {
42,671,388✔
134
    qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(terrno));
×
135
    TAOS_CHECK_EXIT(terrno);
×
136
  }
137
  
138
  ctx->subJobRefId = refId;
42,671,388✔
139

140
  qDebug("%s subJobCtx %" PRIu64 " with %d endPoints inited", pTaskInfo->id.str, (uint64_t)refId, (int32_t)taosArrayGetSize(ctx->subEndPoints));
42,667,374✔
141

142
_exit:
41,564,307✔
143

144
  if (code) {
42,670,254✔
145
    destroySubJobCtx(pTaskInfo->pSubJobCtx);
×
146
    pTaskInfo->pSubJobCtx = NULL;
×
147
    
148
    qError("%s failed at line %d since %s", __func__, lino, tstrerror(code));
×
149
  }
150

151
  return code;
42,670,830✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
375,967,609✔
157
                           int32_t vgId, char* sql, EOPTR_EXEC_MODEL model, SArray** subEndPoints, bool enableExplain) {
158
  int32_t code = doCreateTask(pPlan->id.queryId, taskId, vgId, model, &pHandle->api, pTaskInfo);
375,967,609✔
159
  if (*pTaskInfo == NULL || code != 0) {
375,898,627✔
160
    nodesDestroyNode((SNode*)pPlan);
61✔
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
375,925,403✔
165

166
  if (NULL != sql) {
375,938,657✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
350,022,606✔
168
    if (NULL == (*pTaskInfo)->sql) {
350,023,439✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
375,936,890✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
375,954,651✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
375,903,489✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
375,919,267✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
42,678,309✔
182
    if (code != TSDB_CODE_SUCCESS) {
42,671,973✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
375,873,309✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
375,745,743✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
375,726,137✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
375,715,250✔
195
    doDestroyTask(*pTaskInfo);
612,026✔
196
    (*pTaskInfo) = NULL;
493,018✔
197
  }
198
  return code;
375,693,011✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
276,674,919✔
202
  SSchemaInfo* pSchemaInfo = p;
276,674,919✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
276,674,919✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
276,644,254✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
276,589,291✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
276,594,327✔
208
}
276,571,640✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
276,713,234✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
276,713,234✔
213
  if (pHandle == NULL) {
276,723,964✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
276,723,964✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
276,721,727✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
276,724,743✔
221
  if (code != TSDB_CODE_SUCCESS) {
276,557,238✔
222
    qError("failed to get the table meta, uid:0x%" PRIx64 ", suid:0x%" PRIx64 ", %s", pScanNode->uid, pScanNode->suid,
×
223
           GET_TASKID(pTaskInfo));
224

225
    pAPI->metaReaderFn.clearReader(&mr);
×
226
    return code;
×
227
  }
228

229
  SSchemaInfo schemaInfo = {0};
276,557,238✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
276,547,265✔
232
  schemaInfo.dbname = taosStrdup(dbName);
276,546,861✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
276,629,213✔
234
    pAPI->metaReaderFn.clearReader(&mr);
127,302✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
276,501,911✔
240
    schemaInfo.rversion = mr.me.colRef.version;
309,060✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
276,501,911✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
120,282,119✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
120,282,119✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
156,248,356✔
247
    tDecoderClear(&mr.coder);
110,090,576✔
248

249
    tb_uid_t suid = mr.me.ctbEntry.suid;
110,108,886✔
250
    code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, suid);
110,108,886✔
251
    if (code != TSDB_CODE_SUCCESS) {
110,106,455✔
252
      pAPI->metaReaderFn.clearReader(&mr);
×
253
      cleanupQueriedTableScanInfo(&schemaInfo);
×
254
      return code;
×
255
    }
256

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
110,105,697✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
110,105,697✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
46,187,952✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
276,575,768✔
264

265
  if (schemaInfo.sw == NULL) {
276,470,076✔
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
276,470,076✔
271
  if (schemaInfo.qsw == NULL) {
276,563,655✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
276,563,655✔
277
  if (p == NULL) {
276,646,907✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
276,646,907✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
276,482,084✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
276,482,084✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
276,625,686✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
276,576,784✔
290
  if (pqSw == NULL) {
276,444,824✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
276,444,824✔
295
  if (pqSw->pSchema == NULL) {
276,289,193✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,240,545,412✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
963,898,804✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
963,747,377✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
963,765,263✔
305
    pSchema->colId = pColNode->colId;
963,879,908✔
306
    pSchema->type = pColNode->node.resType.type;
964,031,828✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
964,002,866✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
963,954,435✔
309
  }
310

311
  // this the tags and pseudo function columns, we only keep the tag columns
312
  for (int32_t i = 0; i < numOfTags; ++i) {
456,873,926✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
180,234,317✔
314

315
    int32_t type = nodeType(pNode->pExpr);
180,256,517✔
316
    if (type == QUERY_NODE_COLUMN) {
180,285,025✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
137,786,955✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
137,760,757✔
320
      pSchema->colId = pColNode->colId;
137,707,673✔
321
      pSchema->type = pColNode->node.resType.type;
137,782,154✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
137,710,233✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
137,762,511✔
324
    }
325
  }
326

327
  return pqSw;
276,639,609✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
376,042,791✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
376,042,791✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
376,064,935✔
333
}
375,981,800✔
334

335
static void freeBlock(void* pParam) {
652,828,892✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
652,828,892✔
337
  blockDataDestroy(pBlock);
652,838,095✔
338
}
652,833,307✔
339

340

341
void destroySubJobCtx(STaskSubJobCtx* pCtx) {
42,676,590✔
342
  if (pCtx->transporterId > 0) {
42,676,590✔
343
    int32_t ret = asyncFreeConnById(pCtx->rpcHandle, pCtx->transporterId);
4,032✔
344
    if (ret != 0) {
4,032✔
345
      qDebug("%s failed to free subQ rpc handle, code:%s", pCtx->idStr, tstrerror(ret));
×
346
    }
347
    pCtx->transporterId = -1;
4,032✔
348
  }
349

350
  if (pCtx->subEndPoints != NULL) {
42,681,180✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
42,678,921✔
352
    if (size > 0) {
42,680,046✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
42,680,622✔
354
      if (code != TSDB_CODE_SUCCESS) {
42,677,155✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
42,677,155✔
358
    }
359
    if (pCtx->isStream) {
42,677,139✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
234,706✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
42,439,562✔
363
    }
364
    pCtx->subEndPoints = NULL;
42,671,991✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
42,677,130✔
368
}
42,672,558✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
376,113,516✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
376,113,516✔
372
  destroyOperator(pTaskInfo->pRoot);
376,113,516✔
373
  pTaskInfo->pRoot = NULL;
376,041,788✔
374

375
  if (pTaskInfo->pSubJobCtx) {
376,058,559✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
42,680,044✔
377
    if (code != TSDB_CODE_SUCCESS) {
42,680,037✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
376,085,336✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
376,018,396✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
375,978,753✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
376,032,056✔
387
    pTaskInfo->pSubplan = NULL;
376,044,077✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
376,026,025✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
376,035,985✔
392
  if (!pTaskInfo->paramSet) {
376,048,381✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
368,074,464✔
394
    pTaskInfo->pOpParam = NULL;
368,032,195✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
376,027,622✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
506,130✔
398

399
    // When isMultiGroupCalc, pStreamPesudoFuncVals is aliased to curGrpCalc->pParams
400
    // inside pGroupCalcInfos.  NULL it out so tDestroyStRtFuncInfo won't free it twice.
401
    if (pRt->isMultiGroupCalc && pRt->pGroupCalcInfos != NULL) {
506,130✔
402
      pRt->pStreamPesudoFuncVals = NULL;
73,602✔
403
      pRt->pStreamPartColVals = NULL;
73,602✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
506,130✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
506,130✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
376,044,393✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
376,059,359✔
410
  taosMemoryFreeClear(pTaskInfo);
376,013,553✔
411
}
375,981,717✔
412

413
void buildTaskId(uint64_t taskId, uint64_t queryId, char* dst, int32_t len) {
564,499,718✔
414
  int32_t ret = snprintf(dst, len, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
564,499,718✔
415
  if (ret < 0) {
564,499,718✔
416
    qError("TID:0x%"PRIx64" QID:0x%"PRIx64" create task id failed,  ignore and continue", taskId, queryId);
×
417
  }
418
}
564,499,718✔
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