Skip to content

Commit 743d0ee

Browse files
committed
feat: ignore .md files when do requiresJenkinsRun check
1 parent 460b50d commit 743d0ee

File tree

4 files changed

+149
-1
lines changed

4 files changed

+149
-1
lines changed

lib/pr_checker.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,14 @@ export default class PRChecker {
404404
return false;
405405
}
406406

407+
const files = pr.files.nodes;
408+
409+
// Don't require Jenkins run if pr is doc-only changes
410+
const isDocOnlyChange = files.every(({ path }) => path.endsWith('.md'));
411+
if (isDocOnlyChange) {
412+
return false;
413+
}
414+
407415
const ciNeededFolderRx = /^(deps|lib|src|test)\//;
408416
const ciNeededToolFolderRx =
409417
/^tools\/(code_cache|gyp|icu|inspector|msvs|snapshot|v8_gypfiles)/;
@@ -416,7 +424,7 @@ export default class PRChecker {
416424
];
417425
const ciNeededExtensionList = ['.gyp', '.gypi', '.bat'];
418426

419-
return pr.files.nodes.some(
427+
return files.some(
420428
({ path }) =>
421429
ciNeededFolderRx.test(path) ||
422430
ciNeededToolFolderRx.test(path) ||
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"createdAt": "2022-07-12T11:55:42Z",
3+
"authorAssociation": "MEMBER",
4+
"author": {
5+
"login": "F3n67u",
6+
"email": "[email protected]",
7+
"name": "Feng Yu"
8+
},
9+
"url": "https://github.com/nodejs/node/pull/43796",
10+
"bodyHTML": "\n<p dir=\"auto\"><span class=\"issue-keyword tooltipped tooltipped-se\" aria-label=\"This pull request closes issue #43795.\">Fix</span> <a class=\"issue-link js-issue-link\" data-error-text=\"Failed to load title\" data-id=\"1301950808\" data-permission-text=\"Title is private\" data-url=\"https://github.com/nodejs/node/issues/43795\" data-hovercard-type=\"issue\" data-hovercard-url=\"/nodejs/node/issues/43795/hovercard\" href=\"https://github.com/nodejs/node/issues/43795\">#43795</a></p>",
11+
"bodyText": "Fix #43795",
12+
"labels": { "nodes": [{ "name": "http" }, { "name": "needs-ci" }] },
13+
"files": { "nodes": [{ "path": "lib/_http_server.js" }] },
14+
"title": "http: check if `socket` is null before destroy",
15+
"baseRefName": "main",
16+
"headRefName": "closeIdleConnections",
17+
"changedFiles": 1,
18+
"mergeable": "MERGEABLE",
19+
"closed": false,
20+
"closedAt": null,
21+
"merged": false,
22+
"mergedAt": null
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"createdAt": "2022-06-19T03:31:58Z",
3+
"authorAssociation": "MEMBER",
4+
"author": {
5+
"login": "F3n67u",
6+
"email": "[email protected]",
7+
"name": "Feng Yu"
8+
},
9+
"url": "https://github.com/nodejs/node/pull/43483",
10+
"bodyHTML": "\n<p dir=\"auto\">unicode-org/icu repo has renamed its default branch to main also, this pr update the link to unicode-org/icu old master branch.</p>",
11+
"bodyText": "unicode-org/icu repo has renamed its default branch to main also, this pr update the link to unicode-org/icu old master branch.",
12+
"labels": {
13+
"nodes": [
14+
{ "name": "tools" },
15+
{ "name": "i18n-api" },
16+
{ "name": "fast-track" },
17+
{ "name": "author ready" },
18+
{ "name": "icu" }
19+
]
20+
},
21+
"files": { "nodes": [{ "path": "tools/icu/README.md" }] },
22+
"title": "tools: update link of `ICU data slicer`",
23+
"baseRefName": "main",
24+
"headRefName": "doc/icu",
25+
"changedFiles": 1,
26+
"mergeable": "UNKNOWN",
27+
"closed": true,
28+
"closedAt": "2022-06-20T09:20:58Z",
29+
"merged": true,
30+
"mergedAt": "2022-06-20T09:20:58Z"
31+
}

test/unit/pr_checker.test.js

+86
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,92 @@ describe('PRChecker', () => {
923923
});
924924
});
925925

926+
it('should succeed if doc-only changes in tools dir without Jenkins',
927+
async() => {
928+
const cli = new TestCLI();
929+
930+
const expectedLogs = {
931+
ok: [
932+
['Last GitHub CI successful']
933+
],
934+
info: [
935+
['Green GitHub CI is sufficient']
936+
]
937+
};
938+
939+
const data = {
940+
pr: pullRequests['doc-only-in-tools'],
941+
reviewers: allGreenReviewers,
942+
comments: [],
943+
reviews: approvingReviews,
944+
commits: githubCI['check-suite-success'],
945+
collaborators,
946+
authorIsNew: () => true,
947+
getThread() {
948+
return PRData.prototype.getThread.call(this);
949+
}
950+
};
951+
const checker = new PRChecker(
952+
cli,
953+
data,
954+
{
955+
json: sinon.stub().callsFake(await function() {
956+
return undefined;
957+
})
958+
},
959+
argv);
960+
961+
cli.clearCalls();
962+
const status = await checker.checkCI();
963+
assert(status);
964+
cli.assertCalledWith(expectedLogs, {
965+
ignore: ['startSpinner', 'updateSpinner', 'stopSpinner']
966+
});
967+
}
968+
);
969+
970+
it('should fail if code changes without Jenkins', async() => {
971+
const cli = new TestCLI();
972+
973+
const expectedLogs = {
974+
error: [
975+
['No Jenkins CI runs detected']
976+
],
977+
ok: [
978+
['Last GitHub CI successful']
979+
]
980+
};
981+
982+
const data = {
983+
pr: pullRequests['code-change'],
984+
reviewers: allGreenReviewers,
985+
comments: [],
986+
reviews: approvingReviews,
987+
commits: githubCI['check-suite-success'],
988+
collaborators,
989+
authorIsNew: () => true,
990+
getThread() {
991+
return PRData.prototype.getThread.call(this);
992+
}
993+
};
994+
const checker = new PRChecker(
995+
cli,
996+
data,
997+
{
998+
json: sinon.stub().callsFake(await function() {
999+
return undefined;
1000+
})
1001+
},
1002+
argv);
1003+
1004+
cli.clearCalls();
1005+
const status = await checker.checkCI();
1006+
assert(!status);
1007+
cli.assertCalledWith(expectedLogs, {
1008+
ignore: ['startSpinner', 'updateSpinner', 'stopSpinner']
1009+
});
1010+
});
1011+
9261012
it('should succeed if doc-only changes with failed Jenkins', async() => {
9271013
const cli = new TestCLI();
9281014

0 commit comments

Comments
 (0)