-
Notifications
You must be signed in to change notification settings - Fork 14
/
appveyor.yml
45 lines (37 loc) · 902 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
environment:
github_release_token:
secure: TTQbwwwftUsijup2DaIPSnfBoYtXNrPVUFxNdFF/kugUndKeQk2k7YUSe1C1ojZn
matrix:
- nodejs_version: 5
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
- nodejs_version: 9
platform:
- x86
- x64
image: Visual Studio 2015
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install -g npm
- node --version
- npm --version
- git submodule update --init --recursive
build_script:
- npm install --build-from-source
test_script:
- npm test
after_test:
- node_modules/.bin/node-pre-gyp package
artifacts:
- path: build\stage\gagern\node-libtidy\releases\download\**\*.tar.gz
name: binary
deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
artifact: binary
auth_token: $(github_release_token)
draft: true
prerelease: false
on:
appveyor_repo_tag: true