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

taosdata / TDengine / #5026

17 Apr 2026 01:15AM UTC coverage: 72.966% (-0.04%) from 73.009%
#5026

push

travis-ci

web-flow
fix: replace \s with [[:space:]] in shell regex for macOS BSD compat (#35162)

6 of 7 new or added lines in 2 files covered. (85.71%)

605 existing lines in 129 files now uncovered.

273168 of 374375 relevant lines covered (72.97%)

129569613.61 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,
375,169,139✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
375,169,139✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
375,169,139✔
47
  if (p == NULL) {
375,175,633✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
375,175,633✔
52
  p->cost.created = taosGetTimestampUs();
375,188,732✔
53

54
  p->execModel = model;
375,175,245✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
375,173,079✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
375,129,859✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
375,134,859✔
UNCOV
58
    doDestroyTask(p);
×
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
375,152,983✔
63
  taosInitRWLatch(&p->lock);
375,150,962✔
64

65
  p->id.vgId = vgId;
375,134,076✔
66
  p->id.queryId = queryId;
375,135,872✔
67
  p->id.taskId = taskId;
375,145,548✔
68
  p->id.str = taosMemoryMalloc(64);
375,129,937✔
69
  if (p->id.str == NULL) {
375,088,810✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
375,110,702✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
375,117,838✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
375,076,559✔
77
    doDestroyTask(p);
418✔
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
375,113,876✔
82
  return TSDB_CODE_SUCCESS;
375,107,112✔
83
}
84

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

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

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

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,280,619,886✔
95
  if (status == TASK_NOT_COMPLETED) {
1,280,619,886✔
96
    pTaskInfo->status = status;
375,358,690✔
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);
905,261,196✔
100
    pTaskInfo->status |= status;
905,281,382✔
101
  }
102
}
1,280,647,813✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
41,139,957✔
106
  int32_t code = 0, lino = 0;
41,139,957✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
41,139,957✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
41,141,071✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
41,131,057✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
41,142,736✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
41,146,635✔
115
  ctx->taskId = pTaskInfo->id.taskId;
41,142,182✔
116
  ctx->idStr = pTaskInfo->id.str;
41,141,625✔
117
  ctx->pTaskInfo = pTaskInfo;
41,138,286✔
118
  ctx->subEndPoints = *subEndPoints;
41,138,840✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
41,142,182✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
41,144,955✔
121

122
  *subEndPoints = NULL;
41,144,398✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
41,143,287✔
125
  if (NULL == ctx->subResNodes) {
41,140,520✔
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));
41,142,736✔
131

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

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

142
_exit:
40,164,103✔
143

144
  if (code) {
41,139,397✔
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;
41,140,514✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
375,035,541✔
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,035,541✔
159
  if (*pTaskInfo == NULL || code != 0) {
374,962,193✔
160
    nodesDestroyNode((SNode*)pPlan);
3,305✔
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
374,975,391✔
165

166
  if (NULL != sql) {
374,973,257✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
350,018,251✔
168
    if (NULL == (*pTaskInfo)->sql) {
350,031,535✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
374,948,606✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
375,003,756✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
374,936,436✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
374,970,944✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
41,144,410✔
182
    if (code != TSDB_CODE_SUCCESS) {
41,143,290✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
374,964,957✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
374,973,942✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
374,932,184✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
374,786,993✔
195
    doDestroyTask(*pTaskInfo);
565,337✔
196
    (*pTaskInfo) = NULL;
475,068✔
197
  }
198
  return code;
374,724,737✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
278,740,298✔
202
  SSchemaInfo* pSchemaInfo = p;
278,740,298✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
278,740,298✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
278,728,134✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
278,711,226✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
278,735,666✔
208
}
278,719,013✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
278,783,466✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
278,783,466✔
213
  if (pHandle == NULL) {
278,790,298✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
278,790,298✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
278,784,316✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
278,781,265✔
221
  if (code != TSDB_CODE_SUCCESS) {
278,551,183✔
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};
278,551,183✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
278,588,062✔
232
  schemaInfo.dbname = taosStrdup(dbName);
278,643,890✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
278,669,743✔
234
    pAPI->metaReaderFn.clearReader(&mr);
156,260✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
278,513,483✔
240
    schemaInfo.rversion = mr.me.colRef.version;
302,074✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
278,513,483✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
127,904,866✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
127,904,866✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
150,664,915✔
247
    tDecoderClear(&mr.coder);
106,080,266✔
248

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

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
106,099,897✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
106,099,897✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
44,617,844✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
278,622,607✔
264

265
  if (schemaInfo.sw == NULL) {
278,586,057✔
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
278,586,057✔
271
  if (schemaInfo.qsw == NULL) {
278,632,937✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
278,632,937✔
277
  if (p == NULL) {
278,699,998✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
278,699,998✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
278,600,463✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
278,600,463✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
278,683,119✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
278,497,202✔
290
  if (pqSw == NULL) {
278,466,399✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
278,466,399✔
295
  if (pqSw->pSchema == NULL) {
278,322,184✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,262,922,613✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
984,199,907✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
984,254,396✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
984,271,559✔
305
    pSchema->colId = pColNode->colId;
984,283,551✔
306
    pSchema->type = pColNode->node.resType.type;
984,381,030✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
984,349,747✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
984,248,231✔
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) {
455,313,555✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
176,576,336✔
314

315
    int32_t type = nodeType(pNode->pExpr);
176,621,851✔
316
    if (type == QUERY_NODE_COLUMN) {
176,646,277✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
134,207,140✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
134,196,169✔
320
      pSchema->colId = pColNode->colId;
134,170,185✔
321
      pSchema->type = pColNode->node.resType.type;
134,164,301✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
134,158,002✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
134,145,286✔
324
    }
325
  }
326

327
  return pqSw;
278,737,219✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
375,097,807✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
375,097,807✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
375,127,899✔
333
}
375,025,948✔
334

335
static void freeBlock(void* pParam) {
680,664,632✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
680,664,632✔
337
  blockDataDestroy(pBlock);
680,674,544✔
338
}
680,687,718✔
339

340

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

350
  if (pCtx->subEndPoints != NULL) {
41,148,300✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
41,146,072✔
352
    if (size > 0) {
41,141,065✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
41,141,622✔
354
      if (code != TSDB_CODE_SUCCESS) {
41,143,844✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
41,143,844✔
358
    }
359
    if (pCtx->isStream) {
41,139,688✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
191,372✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
40,949,027✔
363
    }
364
    pCtx->subEndPoints = NULL;
41,137,469✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
41,138,283✔
368
}
41,133,424✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
375,170,443✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
375,170,443✔
372
  destroyOperator(pTaskInfo->pRoot);
375,169,893✔
373
  pTaskInfo->pRoot = NULL;
375,096,568✔
374

375
  if (pTaskInfo->pSubJobCtx) {
375,109,804✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
41,143,293✔
377
    if (code != TSDB_CODE_SUCCESS) {
41,147,743✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
375,144,518✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
375,100,035✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
375,027,214✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
375,054,137✔
387
    pTaskInfo->pSubplan = NULL;
375,100,975✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
375,100,384✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
375,116,231✔
392
  if (!pTaskInfo->paramSet) {
375,116,558✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
367,394,685✔
394
    pTaskInfo->pOpParam = NULL;
367,353,508✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
375,114,899✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
431,578✔
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) {
431,578✔
402
      pRt->pStreamPesudoFuncVals = NULL;
70,644✔
403
      pRt->pStreamPartColVals = NULL;
70,644✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
431,578✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
431,578✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
375,113,495✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
375,101,208✔
410
  taosMemoryFreeClear(pTaskInfo);
375,057,507✔
411
}
375,076,876✔
412

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