File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -132,9 +132,18 @@ jobs:
132
132
architecture : ${{ env.setup_node_arch }}
133
133
134
134
- name : Build Native
135
- if : ${{ !matrix.docker }}
135
+ if :
136
+ ${{ !matrix.docker && matrix.os != 'windows-2019' && matrix.node_arch
137
+ != 'ia32' }}
136
138
run : npm run build.native
137
139
140
+ - name : Build Native Windows 32
141
+ if :
142
+ ${{ !matrix.docker && matrix.os == 'windows-2019' && matrix.node_arch
143
+ == 'ia32' }}
144
+ run :
145
+ node ./node_modules/cmake-ts/build/main.js named-configs windows-x86
146
+
138
147
- name : Use Node 18
139
148
if : ${{ !matrix.docker }}
140
149
uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 135
135
"runtime" : " node" ,
136
136
"runtimeVersion" : " 12.22.12"
137
137
},
138
+ {
139
+ "name" : " windows-x86" ,
140
+ "os" : " win32" ,
141
+ "arch" : " ia32" ,
142
+ "runtime" : " node" ,
143
+ "runtimeVersion" : " 12.22.12"
144
+ },
138
145
{
139
146
"name" : " darwin-x64" ,
140
147
"os" : " darwin" ,
You can’t perform that action at this time.
0 commit comments