-
Notifications
You must be signed in to change notification settings - Fork 8
/
appveyor.yml
46 lines (39 loc) · 955 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: 0.0.{build}
# branches to build
branches:
# whitelist
only:
- master
- beta
- demo
- hack
# Test against the latest version of this Node.js version
environment:
nodejs_version: "8"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version x64
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
# - npm test
after_test:
- ps: |
wget "https://nodejs.org/dist/v8.9.3/node-v8.9.3-win-x64.zip" -OutFile node.zip
7z x node.zip
rm node.zip
mv "node-v8.9.3-win-x64" node
rm -R node/node_modules
touch data/no-hotload.json
7z a windows-release.zip * -xr'!.git'
artifacts:
- path: "windows-release.zip"
name: windows-release
# Don't actually build.
build: off