We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da51f0 commit 2b2e443Copy full SHA for 2b2e443
.github/workflows/ci.yml
@@ -47,6 +47,7 @@ jobs:
47
node: 22
48
binary: linux-x64-glibc-127
49
- os: ubuntu-22.04
50
+ container: telosalliance/ubuntu-20.04:latest
51
node: 24
52
binary: linux-x64-glibc-137
53
binding.gyp
@@ -2,7 +2,12 @@
2
"targets": [
3
{
4
"target_name": "stack-trace",
5
- "sources": [ "module.cc" ]
+ "sources": [ "module.cc" ],
6
+ "conditions": [
7
+ ["OS=='linux' and node_version[0:2]=='24'", {
8
+ "cflags_cc": ["-std=gnu++2a"]
9
+ }]
10
+ ]
11
}
12
]
13
0 commit comments