forked from mafintosh/turbo-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (35 loc) · 866 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
build: false
skip_branch_with_pr: true
environment:
matrix:
- nodejs_version: "Current"
- nodejs_version: "9"
- nodejs_version: "8"
configuration: Release
platform:
- x86
- x64
install:
- SET PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;%PATH%
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install
test_script:
- node --version
- npm --version
- npm test
after_test:
- ps: If ($env:nodejs_version -eq "Current") { npm run prebuild }
artifacts:
- path: prebuilds
name: $(APPVEYOR_REPO_TAG_NAME)-win-$(PLATFORM)
type: zip
deploy:
- provider: GitHub
artifact: /.*\.zip/
draft: false
prerelease: true
auth_token:
secure: Rrnh1ZoAghC7oVlq46X4NNJFi5TKEjy/Z/9IsCKdAjEDPvz2RjeuFLQlHYJUAy60
on:
appveyor_repo_tag: true
nodejs_version: "Current"