forked from TimelordUK/jspurefix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
57 lines (47 loc) · 1.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
version: 1.0.{build}
image:
- Ubuntu
- Visual Studio 2017
platform:
- x64
environment:
matrix:
- nodejs_version: "17"
- nodejs_version: "16"
- nodejs_version: "14"
- nodejs_version: "12"
test_script:
- ps: Write-Host "jspurefix test script"
for:
-
matrix:
only:
- image: Visual Studio 2017
clone_folder: c:\projects\jspurefix
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install
build_script:
- node --version
- cmd: script\build.cmd
test_script:
- cmd: script\test.cmd
-
matrix:
only:
- image: Ubuntu
- platform: x64
clone_folder: /home/appveyor/projects/jspurefix
install:
- nvm install $nodejs_version
- npm install
build_script:
- node --version
- sh: script/build.sh
test_script:
- sh: "npm run repo44-bench-er"
- sh: "npm run tcp-tc"
- sh: "npm run http-oms"
- sh: "npm run tcp-qf-md"
- sh: "npm run tcp-rec-sk"
- sh: "npm test"