Skip to content

Commit 24acdd8

Browse files
committed
Update README.md
1 parent 71566a5 commit 24acdd8

File tree

4 files changed

+7
-91
lines changed

4 files changed

+7
-91
lines changed

β€Ž.github/workflows/selftest.ubuntu-20.04.ymlβ€Ž

Lines changed: 0 additions & 87 deletions
This file was deleted.

β€Ž.github/workflows/selftest.windows-2025.ymlβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: selftest windows-2019
1+
name: selftest windows-2025
22
on:
33
workflow_dispatch: null
44
schedule:
@@ -40,7 +40,6 @@ jobs:
4040
- 8.6.5
4141
- 8.8.1
4242
- 8.8.2
43-
- 8.8.3
4443
- 8.8.4
4544
- 8.10.1
4645
- 8.10.2

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
| `8.10.2` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |
4141
| `8.10.1` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |
4242
| `8.8` `8.8.4` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |
43-
| `8.8.3` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | ❌ | 🟒 |
43+
| `8.8.3` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | ❌ | ❌ |
4444
| `8.8.2` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |
4545
| `8.8.1` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |
4646
| `8.6` `8.6.5` | 🟒 | 🟒 | 🟒 | ❌ | ❌ | 🟒 | 🟒 |

β€Žgenerate/selftest.tsβ€Ž

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

15+
const not_working_on_windows_2025 = new Set([
16+
'8.8.3', // installed not able to compile executables
17+
]);
18+
1519
const not_working_on_ubuntu_24_04 = new Set([
1620
'7.10.3', // ghcup install fails
1721
'8.0.2', // ghcup install fails
@@ -60,7 +64,7 @@ export async function versionMap() {
6064
'macos-14': new Set([...ghcup].filter(v => !not_working_on_macos_14_and_15.has(v))),
6165
'macos-15': new Set([...ghcup].filter(v => !not_working_on_macos_14_and_15.has(v))),
6266
'windows-2022': new Set([...ghcup].filter(v => !not_working_on_windows_2022.has(v))),
63-
'windows-2025': ghcup,
67+
'windows-2025': new Set([...ghcup].filter(v => !not_working_on_windows_2025.has(v))),
6468
};
6569
}
6670

0 commit comments

Comments
Β (0)