Skip to content

Commit 90e5c9d

Browse files
committed
Revert
1 parent d37eb4d commit 90e5c9d

File tree

2 files changed

+2
-52
lines changed

2 files changed

+2
-52
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: "CI: Build & Test"
23
on:
34
push:
@@ -8,7 +9,7 @@ on:
89

910
permissions:
1011
contents: read
11-
packages: read # Required for GHCR
12+
packages: read # Required for GHCR
1213

1314
jobs:
1415
job_lint:
@@ -53,10 +54,6 @@ jobs:
5354
container: ghcr.io/getsentry/sentry-test-ubuntu-20.04-amd64:0dd255f3d41d013c1db4c4e08ffd22ee7959c3cc
5455
node: 24
5556
binary: linux-x64-glibc-137
56-
- os: ubuntu-22.04
57-
container: ghcr.io/getsentry/sentry-test-ubuntu-20.04-amd64:0dd255f3d41d013c1db4c4e08ffd22ee7959c3cc
58-
node: 25
59-
binary: linux-x64-glibc-141
6057

6158
# x64 musl
6259
- os: ubuntu-22.04
@@ -75,10 +72,6 @@ jobs:
7572
container: node:24-alpine3.20
7673
node: 24
7774
binary: linux-x64-musl-137
78-
- os: ubuntu-22.04
79-
container: node:25-alpine3.21
80-
node: 25
81-
binary: linux-x64-musl-141
8275

8376
# arm64 glibc
8477
- os: ubuntu-22.04
@@ -97,10 +90,6 @@ jobs:
9790
arch: arm64
9891
node: 24
9992
binary: linux-arm64-glibc-137
100-
- os: ubuntu-22.04
101-
arch: arm64
102-
node: 25
103-
binary: linux-arm64-glibc-141
10493

10594
# arm64 musl
10695
- os: ubuntu-22.04
@@ -123,11 +112,6 @@ jobs:
123112
container: node:24-alpine3.20
124113
node: 24
125114
binary: linux-arm64-musl-137
126-
- os: ubuntu-22.04
127-
arch: arm64
128-
container: node:24-alpine3.20
129-
node: 25
130-
binary: linux-arm64-musl-141
131115

132116
# macos x64
133117
- os: macos-15-intel
@@ -146,10 +130,6 @@ jobs:
146130
node: 24
147131
arch: x64
148132
binary: darwin-x64-137
149-
- os: macos-15-intel
150-
node: 25
151-
arch: x64
152-
binary: darwin-x64-141
153133

154134
# macos arm64
155135
- os: macos-15
@@ -172,11 +152,6 @@ jobs:
172152
node: 24
173153
target_platform: darwin
174154
binary: darwin-arm64-137
175-
- os: macos-15
176-
arch: arm64
177-
node: 25
178-
target_platform: darwin
179-
binary: darwin-arm64-141
180155

181156
# windows x64
182157
- os: windows-2022
@@ -195,10 +170,6 @@ jobs:
195170
node: 24
196171
arch: x64
197172
binary: win32-x64-137
198-
- os: windows-2022
199-
node: 25
200-
arch: x64
201-
binary: win32-x64-141
202173

203174
steps:
204175
- name: Setup (alpine)

src/index.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,6 @@ function getNativeModule(): Native {
9393
if (abi === '137') {
9494
return require('./stack-trace-darwin-x64-137.node');
9595
}
96-
if (abi === '141') {
97-
return require('./stack-trace-darwin-x64-141.node');
98-
}
9996
}
10097

10198
if (arch === 'arm64') {
@@ -111,9 +108,6 @@ function getNativeModule(): Native {
111108
if (abi === '137') {
112109
return require('./stack-trace-darwin-arm64-137.node');
113110
}
114-
if (abi === '141') {
115-
return require('./stack-trace-darwin-arm64-141.node');
116-
}
117111
}
118112
}
119113

@@ -131,9 +125,6 @@ function getNativeModule(): Native {
131125
if (abi === '137') {
132126
return require('./stack-trace-win32-x64-137.node');
133127
}
134-
if (abi === '141') {
135-
return require('./stack-trace-win32-x64-141.node');
136-
}
137128
}
138129
}
139130

@@ -152,9 +143,6 @@ function getNativeModule(): Native {
152143
if (abi === '137') {
153144
return require('./stack-trace-linux-x64-musl-137.node');
154145
}
155-
if (abi === '141') {
156-
return require('./stack-trace-linux-x64-musl-141.node');
157-
}
158146
}
159147
if (stdlib === 'glibc') {
160148
if (abi === '108') {
@@ -169,9 +157,6 @@ function getNativeModule(): Native {
169157
if (abi === '137') {
170158
return require('./stack-trace-linux-x64-glibc-137.node');
171159
}
172-
if (abi === '141') {
173-
return require('./stack-trace-linux-x64-glibc-141.node');
174-
}
175160
}
176161
}
177162
if (arch === 'arm64') {
@@ -188,9 +173,6 @@ function getNativeModule(): Native {
188173
if (abi === '137') {
189174
return require('./stack-trace-linux-arm64-musl-137.node');
190175
}
191-
if (abi === '141') {
192-
return require('./stack-trace-linux-arm64-musl-141.node');
193-
}
194176
}
195177

196178
if (stdlib === 'glibc') {
@@ -206,9 +188,6 @@ function getNativeModule(): Native {
206188
if (abi === '137') {
207189
return require('./stack-trace-linux-arm64-glibc-137.node');
208190
}
209-
if (abi === '141') {
210-
return require('./stack-trace-linux-arm64-glibc-141.node');
211-
}
212191
}
213192
}
214193
}

0 commit comments

Comments
 (0)