Skip to content

Commit 8c21c93

Browse files
authored
Merge pull request #33 from lgeiger/win32-build
Enable Win32 build
2 parents 0394c9d + b5f7142 commit 8c21c93

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

appveyor.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,23 @@ 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:
1825
- node --version
1926
- npm --version
20-
- node windows/smoketest.js
27+
- npm test

0 commit comments

Comments
 (0)