Skip to content

Commit f6a1f98

Browse files
committed
wip
1 parent a403371 commit f6a1f98

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

generate/selftest.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@ const not_working_on_windows_2022 = new Set([
1313
'8.8.3', // installed not able to compile executables
1414
]);
1515

16+
const not_working_on_ubuntu_24_04 = new Set([
17+
'7.10.3', // ghcup install fails
18+
'8.0.2', // ghcup install fails
19+
'8.2.2', // ghcup install fails
20+
]);
21+
1622
export async function versionMap() {
1723
const ghcup = await list();
1824
return {
1925
'ubuntu-20.04': new Set([...ppa.ubuntu20, ...ghcup]),
2026
'ubuntu-22.04': new Set([...ghcup].filter(v => !not_working_on_ubuntu_22_04.has(v))),
21-
'ubuntu-24.04': ghcup,
27+
'ubuntu-24.04': new Set([...ghcup].filter(v => !not_working_on_ubuntu_24_04.has(v))),
2228
'macos-13': ghcup,
2329
'macos-14': ghcup,
2430
'macos-15': ghcup,

0 commit comments

Comments
 (0)