Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a71c3f

Browse files
committedApr 16, 2025·
Add Windows arm64
1 parent a7bdcb7 commit 7a71c3f

File tree

1 file changed

+26
-20
lines changed

1 file changed

+26
-20
lines changed
 

‎index.html

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@
142142
'MacOS (macOS-13)',
143143
'MacOS (macOS-14)',
144144
'Windows (check)',
145-
'Windows (installer)'
145+
'Windows (check, arm)',
146+
'Windows (installer)',
147+
'Windows (installer, arm)'
146148
];
147149

148150
matrix.forEach(function(name){
@@ -175,10 +177,10 @@
175177
});
176178
}
177179
var td = tr.add_cell(a);
178-
if((name === 'Windows Installer' || name === 'Windows (installer)') && artifacts['installer']){
179-
const img = $('<img width=16 src="download-icon.png"></img>').css("padding-left", '10px');
180-
$("<a>").append(img).attr("href", nightly_link(run_id, artifacts['installer'].id)).appendTo(td);
181-
}
180+
//if((name === 'Windows Installer' || name === 'Windows (installer)') && artifacts['installer']){
181+
// const img = $('<img width=16 src="download-icon.png"></img>').css("padding-left", '10px');
182+
// $("<a>").append(img).attr("href", nightly_link(run_id, artifacts['installer'].id)).appendTo(td);
183+
//}
182184
} else {
183185
tr.add_cell(null);
184186
}
@@ -231,7 +233,7 @@
231233
fill_jobs(jobs.jobs, artifacts.artifacts, tr, run.id);
232234
const github_link = $("<a />").
233235
append('<img width=16 src="GitHub-Mark-32px.png"></img>').
234-
attr('href', run.html_url).
236+
attr('href', run.html_url + '#artifacts').
235237
css('padding', '0px 5px').
236238
attr('target', '_blank');
237239
tr.add_cell(github_link);
@@ -269,35 +271,39 @@ <h1>R SVN build status</h1>
269271
<thead>
270272
<tr>
271273
<th colspan="4" rowspan="2">Commit</th>
272-
<th colspan="4">GCC</th>
273-
<th colspan="4">Clang</th>
274+
<th colspan="4">Linux GCC</th>
275+
<th colspan="4">Linux Clang</th>
274276
<th colspan="2" rowspan="2">MacOS</th>
275-
<th colspan="2" rowspan="2">Windows (mingw-w64)</th>
277+
<th colspan="4" rowspan="1">Windows</th>
278+
<th colspan="1" rowspan="3">Files</th>
276279
</tr>
277280
<tr>
278-
<th colspan="2">stable</th>
279-
<th colspan="2">testing</th>
280-
<th colspan="2">stable</th>
281-
<th colspan="2">testing</th>
281+
<th colspan="2">stable</th>
282+
<th colspan="2">testing</th>
283+
<th colspan="2">stable</th>
284+
<th colspan="2">testing</th>
285+
<th colspan="2">check</th>
286+
<th colspan="2">installer</th>
282287
</tr>
283288
<tr>
284289
<th> Date </th>
285290
<th> Revision </th>
286291
<th> Message </th>
287292
<th> Author </th>
288-
<th> amd </th>
293+
<th> intel </th>
289294
<th> arm </th>
290-
<th> amd </th>
295+
<th> intel </th>
291296
<th> arm </th>
292-
<th> amd </th>
297+
<th> intel </th>
293298
<th> arm </th>
294-
<th> amd </th>
299+
<th> intel </th>
295300
<th> arm </th>
296301
<th> intel </th>
297302
<th> arm </th>
298-
<th> check </th>
299-
<th> installer </th>
300-
<th> CI </th>
303+
<th> intel </th>
304+
<th> arm </th>
305+
<th> intel </th>
306+
<th> arm </th>
301307
</tr>
302308
</thead>
303309
<tbody>

0 commit comments

Comments
 (0)
Please sign in to comment.