Skip to content

Commit b573b76

Browse files
committed
[ci] update macos to 26, add timestamps
1 parent 3735460 commit b573b76

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
llvm: 21
2727
python: "3.14"
2828
runtime_cxx_standard: 20
29-
- os: macos-15
29+
- os: macos-26
3030
llvm: 20
3131
python: "3.12"
3232
runtime_cxx_standard: 20
@@ -111,7 +111,10 @@ jobs:
111111
return `| ${cfg} | \`${result}\` |`;
112112
});
113113
114-
const body = [marker, '## Test Results', '| Configuration | Result |', '|---|---|', ...rows].join('\n');
114+
const sha = context.payload.pull_request.head.sha.slice(0, 7);
115+
const time = new Date().toISOString().replace('T', ' ').slice(0, 19) + ' UTC';
116+
const header = `## Test Results\n\`${sha}\` — ${time}`;
117+
const body = [marker, header, '| Configuration | Result |', '|---|---|', ...rows].join('\n');
115118
const { data: comments } = await github.rest.issues.listComments({
116119
...context.repo, issue_number: context.issue.number,
117120
});

0 commit comments

Comments
 (0)