Skip to content

Commit 44b4354

Browse files
authored
build: downgrade armv7 support to experimental
There are a bunch of issues on that platform with recent V8 versions and we don't have the capacity to fix them. PR-URL: #58071 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Paolo Insogna <[email protected]>
1 parent 2fe23af commit 44b4354

File tree

3 files changed

+12
-20
lines changed

3 files changed

+12
-20
lines changed

.github/ISSUE_TEMPLATE/4-report-a-flaky-test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ body:
2828
- AIX
2929
- FreeBSD
3030
- Linux ARM64
31-
- Linux ARMv7
3231
- Linux PPC64LE
3332
- Linux s390x
3433
- Linux x64

.github/workflows/label-flaky-test-issue.yml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
platform2label["AIX"]="aix";
2727
platform2label["FreeBSD"]="freebsd";
2828
platform2label["Linux ARM64"]="linux";
29-
platform2label["Linux ARMv7"]="arm";
3029
platform2label["Linux PPC64LE"]="ppc";
3130
platform2label["Linux s390x"]="s390";
3231
platform2label["Linux x64"]="linux";

BUILDING.md

+12-18
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ platforms. This is true regardless of entries in the table below.
110110
| GNU/Linux | x64 | kernel >= 3.10, musl >= 1.1.19 | Experimental | e.g. Alpine 3.8 |
111111
| GNU/Linux | x86 | kernel >= 3.10, glibc >= 2.17 | Experimental | Downgraded as of Node.js 10 |
112112
| GNU/Linux | arm64 | kernel >= 4.18[^1], glibc >= 2.28 | Tier 1 | e.g. Ubuntu 20.04, Debian 10, RHEL 8 |
113-
| GNU/Linux | armv7 | kernel >= 4.18[^1], glibc >= 2.28 | Tier 1 | e.g. Ubuntu 22.04, Debian 12 |
113+
| GNU/Linux | armv7 | kernel >= 4.18[^1], glibc >= 2.28 | Experimental | Downgraded as of Node.js 24 |
114114
| GNU/Linux | armv6 | kernel >= 4.14, glibc >= 2.24 | Experimental | Downgraded as of Node.js 12 |
115115
| GNU/Linux | ppc64le >=power8 | kernel >= 4.18[^1], glibc >= 2.28 | Tier 2 | e.g. Ubuntu 20.04, RHEL 8 |
116116
| GNU/Linux | s390x | kernel >= 4.18[^1], glibc >= 2.28 | Tier 2 | e.g. RHEL 8 |
@@ -162,18 +162,17 @@ Depending on the host platform, the selection of toolchains may vary.
162162

163163
Binaries at <https://nodejs.org/download/release/> are produced on:
164164

165-
| Binary package | Platform and Toolchain |
166-
| ----------------------- | ------------------------------------------------------------------------------------------------------------- |
167-
| aix-ppc64 | AIX 7.2 TL04 on PPC64BE with GCC 12[^5] |
168-
| darwin-x64 | macOS 13, Xcode 16 with -mmacosx-version-min=13.5 |
169-
| darwin-arm64 (and .pkg) | macOS 13 (arm64), Xcode 16 with -mmacosx-version-min=13.5 |
170-
| linux-arm64 | RHEL 8 with gcc-toolset-12[^6] |
171-
| linux-armv7l | Cross-compiled on RHEL 9 x64 with a [custom GCC toolchain](https://github.com/rvagg/rpi-newer-crosstools)[^7] |
172-
| linux-ppc64le | RHEL 8 with gcc-toolset-12[^6] |
173-
| linux-s390x | RHEL 8 with gcc-toolset-12[^6] |
174-
| linux-x64 | RHEL 8 with gcc-toolset-12[^6] |
175-
| win-arm64 | Windows Server 2022 (x64) with Visual Studio 2022 |
176-
| win-x64 | Windows Server 2022 (x64) with Visual Studio 2022 |
165+
| Binary package | Platform and Toolchain |
166+
| ----------------------- | --------------------------------------------------------- |
167+
| aix-ppc64 | AIX 7.2 TL04 on PPC64BE with GCC 12[^5] |
168+
| darwin-x64 | macOS 13, Xcode 16 with -mmacosx-version-min=13.5 |
169+
| darwin-arm64 (and .pkg) | macOS 13 (arm64), Xcode 16 with -mmacosx-version-min=13.5 |
170+
| linux-arm64 | RHEL 8 with gcc-toolset-12[^6] |
171+
| linux-ppc64le | RHEL 8 with gcc-toolset-12[^6] |
172+
| linux-s390x | RHEL 8 with gcc-toolset-12[^6] |
173+
| linux-x64 | RHEL 8 with gcc-toolset-12[^6] |
174+
| win-arm64 | Windows Server 2022 (x64) with Visual Studio 2022 |
175+
| win-x64 | Windows Server 2022 (x64) with Visual Studio 2022 |
177176

178177
<!--lint disable final-definition-->
179178

@@ -185,11 +184,6 @@ Binaries at <https://nodejs.org/download/release/> are produced on:
185184
distributions natively supporting GCC 8.1 or higher, such as Debian 10,
186185
RHEL 8 and Ubuntu 20.04.
187186

188-
[^7]: Binaries produced on these systems are compatible with glibc >= 2.28
189-
and libstdc++ >= 6.0.30 (`GLIBCXX_3.4.30`). These are available on
190-
distributions natively supporting GCC 12.1 or higher, such as Debian 12,
191-
Ubuntu 22.04.
192-
193187
<!--lint enable final-definition-->
194188

195189
#### OpenSSL asm support

0 commit comments

Comments
 (0)