Skip to content

Commit e4d348b

Browse files
authored
Remove win32-ia32 build target (#1653)
* Remove `win32-ia32` build target * Update CHANGELOG
1 parent 2037635 commit e4d348b

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ jobs:
3131
- vsce_target: win32-x64
3232
ls_target: windows_amd64
3333
npm_config_arch: x64
34-
- vsce_target: win32-ia32
35-
ls_target: windows_386
36-
npm_config_arch: ia32
3734
- vsce_target: win32-arm64
3835
ls_target: windows_arm64
3936
npm_config_arch: arm

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [2.29.1] (2023-12-13)
22

3+
BREAKING CHANGES:
4+
5+
* Publishing extensions for the `win32-ia32` target has been disabled, so we can no longer provide builds for Windows 32bit. (see [microsoft/vscode-vsce#908](https://github.com/microsoft/vscode-vsce/pull/908) and [microsoft/vscode#195559](https://github.com/microsoft/vscode/pull/195559))
6+
37
ENHANCEMENTS:
48

59
* Add new panel for Terraform Cloud structured plans ([#1590](https://github.com/hashicorp/vscode-terraform/pull/1590))

DEVELOPMENT.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ macOS | darwin_arm64 | darwin_arm64 | ✅
135135
Linux | linux_amd64 | linux_x64 | ✅
136136
Linux | linux_arm | linux_armhf | ✅
137137
Linux | linux_arm64 | linux_arm64 | ✅
138-
Windows | windows_386 | win32_ia32 | ✅
139138
Windows | windows_amd64 | win32_x64 | ✅
140139
Windows | windows_arm64 | win32_arm64 | ✅
141140

build/downloader.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,8 @@ function getArch(arch: string) {
2626
// Linux | linux_amd64 | linux_x64 | ✅
2727
// Linux | linux_arm | linux_armhf | ✅
2828
// Linux | linux_arm64 | linux_arm64 | ✅
29-
// Windows | windows_386 | win32_ia32 | ✅
3029
// Windows | windows_amd64 | win32_x64 | ✅
3130
// Windows | windows_arm64 | win32_arm64 | ✅
32-
if (arch === 'ia32') {
33-
return '386';
34-
}
3531
if (arch === 'x64') {
3632
return 'amd64';
3733
}

0 commit comments

Comments
 (0)