Skip to content

Commit 867e65d

Browse files
committed
fix: disable Arm builds for Mac and Windows
1 parent 7d20cd0 commit 867e65d

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.github/workflows/CI.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
zmq_draft: false
3838
zmq_version: 4.3.4
3939

40-
- os: windows-2022
41-
node_version: 18
42-
node_arch: x64
43-
ARCH: arm64
44-
cpp_arch: amd64_arm64
45-
zmq_draft: false
46-
zmq_version: 4.3.4
40+
# - os: windows-2022
41+
# node_version: 18
42+
# node_arch: x64
43+
# ARCH: arm64
44+
# cpp_arch: amd64_arm64
45+
# zmq_draft: false
46+
# zmq_version: 4.3.4
4747

4848
- os: macos-11
4949
node_version: 18
@@ -53,13 +53,13 @@ jobs:
5353
zmq_draft: false
5454
zmq_version: 4.3.4
5555

56-
- os: macos-11
57-
node_version: 18
58-
node_arch: x64
59-
ARCH: arm64
60-
cpp_arch: amd64_arm64
61-
zmq_draft: false
62-
zmq_version: 4.3.4
56+
# - os: macos-11
57+
# node_version: 18
58+
# node_arch: x64
59+
# ARCH: arm64
60+
# cpp_arch: amd64_arm64
61+
# zmq_draft: false
62+
# zmq_version: 4.3.4
6363

6464
env:
6565
ZMQ_VERSION: ${{ matrix.zmq_version }}

binding.gyp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@
126126
],
127127
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
128128
'GCC_ENABLE_EXCEPTIONS': 'YES',
129-
'OTHER_CFLAGS': [
130-
"<!(echo \"-arch ${ARCH:=x86_64}\")",
131-
],
132-
'OTHER_LDFLAGS': [
133-
"<!(echo \"-arch ${ARCH:=x86_64}\")",
134-
]
129+
# 'OTHER_CFLAGS': [
130+
# "<!(echo \"-arch ${ARCH:=x86_64}\")",
131+
# ],
132+
# 'OTHER_LDFLAGS': [
133+
# "<!(echo \"-arch ${ARCH:=x86_64}\")",
134+
# ]
135135
},
136136
}],
137137

@@ -219,12 +219,12 @@
219219
'DEAD_CODE_STRIPPING': 'YES',
220220
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
221221
'GCC_ENABLE_EXCEPTIONS': 'YES',
222-
'OTHER_CFLAGS': [
223-
"<!(echo \"-arch ${ARCH:=x86_64}\")",
224-
],
225-
'OTHER_LDFLAGS': [
226-
"<!(echo \"-arch ${ARCH:=x86_64}\")",
227-
]
222+
# 'OTHER_CFLAGS': [
223+
# "<!(echo \"-arch ${ARCH:=x86_64}\")",
224+
# ],
225+
# 'OTHER_LDFLAGS': [
226+
# "<!(echo \"-arch ${ARCH:=x86_64}\")",
227+
# ]
228228
},
229229
}],
230230

0 commit comments

Comments
 (0)