Skip to content

Commit 9374053

Browse files
chore: move windows from tier 3 to unsupported (#4031)
1 parent 092cf18 commit 9374053

File tree

4 files changed

+2
-92
lines changed

4 files changed

+2
-92
lines changed

.github/workflows/build-win-release.yml

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

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,10 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [macos-14, ubuntu-22.04, ubuntu-24.04, windows-2022, custom-arm64-jammy, custom-arm64-noble]
28+
os: [macos-14, ubuntu-22.04, ubuntu-24.04, custom-arm64-jammy, custom-arm64-noble]
2929
steps:
3030
- uses: actions/checkout@v4
3131
- uses: ./.github/actions/setup-go-for-project
32-
- name: Set timeout on Windows # Windows UT run slower and need a longer timeout
33-
shell: bash
34-
if: matrix.os == 'windows-2022'
35-
run: echo "TIMEOUT=240s" >> "$GITHUB_ENV"
3632
- name: test-unit
3733
shell: bash
3834
run: ./scripts/run_task.sh test-unit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ AvalancheGo support tiers:
225225
| amd64 | Linux | 1 |
226226
| arm64 | Linux | 2 |
227227
| amd64 | Darwin | 2 |
228-
| amd64 | Windows | 3 |
228+
| amd64 | Windows | Not supported |
229229
| arm | Linux | Not supported |
230230
| i386 | Linux | Not supported |
231231
| arm64 | Darwin | Not supported |

scripts/actionlint.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ for file in .github/workflows/*.{yml,yaml}; do
1010
# Skip if no matches found (in case one of the extensions doesn't exist)
1111
[[ -f "$file" ]] || continue
1212

13-
# Skip build-win-release due to not having an easy way to test go-task on windows
14-
[[ "$file" == *build-win-release.yml ]] && continue
15-
1613
# Search for scripts/* except for scripts/run_task.sh
1714
MATCHES=$(grep -H -n -P "scripts/(?!run_task\.sh)" "$file" || true)
1815
if [[ -n "${MATCHES}" ]]; then

0 commit comments

Comments
 (0)