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

taosdata / TDengine / #5043

29 Apr 2026 11:44AM UTC coverage: 73.107% (-0.06%) from 73.17%
#5043

push

travis-ci

web-flow
feat(statewindow): support multi columns (#35136)

1563 of 1828 new or added lines in 18 files covered. (85.5%)

7490 existing lines in 148 files now uncovered.

277321 of 379338 relevant lines covered (73.11%)

131116908.85 hits per line

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

81.71
/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,
390,122,056✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
390,122,056✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
390,122,056✔
47
  if (p == NULL) {
390,068,416✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
390,068,416✔
52
  p->cost.created = taosGetTimestampUs();
390,145,626✔
53

54
  p->execModel = model;
390,154,961✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
390,147,310✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
390,079,435✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
390,075,563✔
58
    doDestroyTask(p);
53✔
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
390,127,342✔
63
  taosInitRWLatch(&p->lock);
390,117,397✔
64

65
  p->id.vgId = vgId;
390,103,008✔
66
  p->id.queryId = queryId;
390,106,448✔
67
  p->id.taskId = taskId;
390,106,433✔
68
  p->id.str = taosMemoryMalloc(64);
390,109,536✔
69
  if (p->id.str == NULL) {
390,020,195✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
390,085,296✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
390,065,098✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
390,018,138✔
UNCOV
77
    doDestroyTask(p);
×
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
390,071,240✔
82
  return TSDB_CODE_SUCCESS;
390,082,103✔
83
}
84

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

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

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

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,326,374,101✔
95
  if (status == TASK_NOT_COMPLETED) {
1,326,374,101✔
96
    pTaskInfo->status = status;
390,285,258✔
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);
936,088,843✔
100
    pTaskInfo->status |= status;
936,119,707✔
101
  }
102
}
1,326,420,318✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
43,543,410✔
106
  int32_t code = 0, lino = 0;
43,543,410✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
43,543,410✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
43,546,181✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
43,534,697✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
43,545,006✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
43,549,078✔
115
  ctx->taskId = pTaskInfo->id.taskId;
43,547,921✔
116
  ctx->idStr = pTaskInfo->id.str;
43,543,257✔
117
  ctx->pTaskInfo = pTaskInfo;
43,542,665✔
118
  ctx->subEndPoints = *subEndPoints;
43,549,652✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
43,546,737✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
43,547,478✔
121

122
  *subEndPoints = NULL;
43,546,321✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
43,544,414✔
125
  if (NULL == ctx->subResNodes) {
43,543,998✔
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));
43,549,837✔
131

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

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

142
_exit:
42,393,162✔
143

144
  if (code) {
43,540,934✔
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;
43,543,257✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
389,981,266✔
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);
389,981,266✔
159
  if (*pTaskInfo == NULL || code != 0) {
389,903,207✔
UNCOV
160
    nodesDestroyNode((SNode*)pPlan);
×
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
389,927,986✔
165

166
  if (NULL != sql) {
389,940,493✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
363,490,747✔
168
    if (NULL == (*pTaskInfo)->sql) {
363,506,787✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
389,946,090✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
389,959,816✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
389,904,138✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
389,928,769✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
43,545,733✔
182
    if (code != TSDB_CODE_SUCCESS) {
43,542,100✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
389,844,938✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
389,699,409✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
389,667,782✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
389,678,266✔
195
    doDestroyTask(*pTaskInfo);
805,854✔
196
    (*pTaskInfo) = NULL;
500,069✔
197
  }
198
  return code;
389,450,680✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
288,141,914✔
202
  SSchemaInfo* pSchemaInfo = p;
288,141,914✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
288,141,914✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
288,121,759✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
288,067,089✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
288,041,923✔
208
}
288,036,520✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
288,206,693✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
288,206,693✔
213
  if (pHandle == NULL) {
288,214,740✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
288,214,740✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
288,211,393✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
288,210,321✔
221
  if (code != TSDB_CODE_SUCCESS) {
287,969,898✔
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};
287,969,898✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
287,969,831✔
232
  schemaInfo.dbname = taosStrdup(dbName);
287,994,748✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
288,085,908✔
234
    pAPI->metaReaderFn.clearReader(&mr);
171,969✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
287,913,939✔
240
    schemaInfo.rversion = mr.me.colRef.version;
313,142✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
287,913,939✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
128,739,471✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
128,739,471✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
159,216,195✔
247
    tDecoderClear(&mr.coder);
111,980,584✔
248

249
    tb_uid_t suid = mr.me.ctbEntry.suid;
112,010,942✔
250
    code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, suid);
112,010,942✔
251
    if (code != TSDB_CODE_SUCCESS) {
112,014,810✔
252
      pAPI->metaReaderFn.clearReader(&mr);
×
253
      cleanupQueriedTableScanInfo(&schemaInfo);
×
254
      return code;
×
255
    }
256

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
112,011,572✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
112,011,572✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
47,258,997✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
288,010,040✔
264

265
  if (schemaInfo.sw == NULL) {
287,876,782✔
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
287,876,782✔
271
  if (schemaInfo.qsw == NULL) {
288,013,304✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
288,013,304✔
277
  if (p == NULL) {
288,041,910✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
288,041,910✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
287,949,286✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
287,949,286✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
288,100,824✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
288,030,084✔
290
  if (pqSw == NULL) {
287,862,527✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
287,862,527✔
295
  if (pqSw->pSchema == NULL) {
287,666,489✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,294,935,950✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
1,006,817,585✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
1,006,941,438✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
1,006,973,833✔
305
    pSchema->colId = pColNode->colId;
1,007,033,465✔
306
    pSchema->type = pColNode->node.resType.type;
1,007,098,857✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
1,007,074,625✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
1,006,955,135✔
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) {
497,033,287✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
208,909,624✔
314

315
    int32_t type = nodeType(pNode->pExpr);
208,981,891✔
316
    if (type == QUERY_NODE_COLUMN) {
209,013,941✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
163,111,888✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
163,081,583✔
320
      pSchema->colId = pColNode->colId;
163,012,476✔
321
      pSchema->type = pColNode->node.resType.type;
163,105,662✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
163,046,400✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
163,069,266✔
324
    }
325
  }
326

327
  return pqSw;
288,123,663✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
390,019,280✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
390,019,280✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
390,062,870✔
333
}
389,925,128✔
334

335
static void freeBlock(void* pParam) {
717,556,396✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
717,556,396✔
337
  blockDataDestroy(pBlock);
717,572,439✔
338
}
717,558,117✔
339

340

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

350
  if (pCtx->subEndPoints != NULL) {
43,550,004✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
43,547,338✔
352
    if (size > 0) {
43,548,504✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
43,549,661✔
354
      if (code != TSDB_CODE_SUCCESS) {
43,547,125✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
43,547,125✔
358
    }
359
    if (pCtx->isStream) {
43,545,095✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
246,147✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
43,297,199✔
363
    }
364
    pCtx->subEndPoints = NULL;
43,541,286✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
43,545,358✔
368
}
43,540,730✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
390,140,657✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
390,140,657✔
372
  destroyOperator(pTaskInfo->pRoot);
390,140,228✔
373
  pTaskInfo->pRoot = NULL;
390,007,107✔
374

375
  if (pTaskInfo->pSubJobCtx) {
390,051,005✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
43,550,809✔
377
    if (code != TSDB_CODE_SUCCESS) {
43,548,486✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
390,074,271✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
390,009,201✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
389,919,183✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
390,025,039✔
387
    pTaskInfo->pSubplan = NULL;
390,033,905✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
389,964,392✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
390,029,225✔
392
  if (!pTaskInfo->paramSet) {
390,057,402✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
381,699,723✔
394
    pTaskInfo->pOpParam = NULL;
381,624,070✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
390,022,186✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
538,845✔
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) {
538,420✔
402
      pRt->pStreamPesudoFuncVals = NULL;
73,950✔
403
      pRt->pStreamPartColVals = NULL;
73,950✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
538,420✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
538,420✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
390,049,409✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
390,053,986✔
410
  taosMemoryFreeClear(pTaskInfo);
390,010,495✔
411
}
389,949,042✔
412

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