Skip to content

Commit c3bfc8d

Browse files
committed
Enable Win32 build
1 parent 480a155 commit c3bfc8d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

appveyor.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@ environment:
55

66
platform:
77
- x64
8+
- Win32
89
# - x86 # x86 builds aren't working for now
910

1011
configuration:
1112
- release
1213

1314
install:
14-
- ps: Install-Product node $env:nodejs_version $env:platform
15+
- ps: >-
16+
if($env:platform -eq "Win32") {
17+
Install-Product node $env:nodejs_version
18+
}
19+
else {
20+
Install-Product node $env:nodejs_version $env:platform
21+
}
1522
- npm install
1623

1724
test_script:

0 commit comments

Comments
 (0)