File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff 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+
1622export 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 ,
You can’t perform that action at this time.
0 commit comments