我想使用Json API从jenkins做报告。 报告以下详细信息: -
struct sString{
char* str;
void* next_hor;
void* next_ver;
};
struct sInt{
char* Int;
void* next_hor;
void* next_ver;
};
in first column
if ( check type of column)
{for each row
{
generate corresponding struct and link it to previous element (add-function)
}
}
for other columns
{
( check type of column)
{for each row
{
generate corresponding struct and link it to previous element (add-function)
also iterate though linked list and insert the horizontal link
}
}
}
我正在尝试获取jenkins实例中存在的所有作业。 我尝试使用下面的代码,但获取大量数据:(
Job Name :
No. of Build :
Sucessfull :
Failed :
Aborted :
任何帮助都会得到满足。