-
Notifications
You must be signed in to change notification settings - Fork 261
/
appveyor.yml
43 lines (33 loc) · 1.05 KB
/
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
image:
- Visual Studio 2019
init:
- git config --global core.autocrlf true
environment:
global:
PACKAGE: "Nodejs"
PLUGIN_VERSION: "2.0.5"
SUBLIME_TEXT_VERSION : "3"
matrix:
- nodejs_version: "12"
- nodejs_version: "13"
branches:
only:
- master
install:
- ps: Install-Product node $env:nodejs_version
- ps: appveyor DownloadFile "https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/appveyor.ps1"
- ps: .\appveyor.ps1 "bootstrap" -verbose
- ps: .\appveyor.ps1 "install_package_control" -verbose
build: off
after_test:
- "SET PYTHON=C:\\Python38"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install coverage==4.5.4 codecov==2.0.15
- codecov
test_script:
- node --version
- npm --version
- ps: New-Item c:\st\data\packages\nodejs\.debug_plugin -type file -force
- ps: .\appveyor.ps1 "run_tests" -coverage -verbose
on_failure:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))