-
Notifications
You must be signed in to change notification settings - Fork 28
/
appveyor.yml
66 lines (58 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
- # AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
platform:
- x64
- x86
clone_depth: 10
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
# What combinations to test
environment:
matrix:
- nodejs_version: 16
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- node --version
- npm install -g npm
- npm --version
- "npm install -g git://github.com/tars/tars-cli.git#%APPVEYOR_REPO_COMMIT%"
build: off
test_script:
- cmd: tars --version
- cmd: mkdir tars-temp
- cmd: cd tars-temp
- cmd: tars init --silent
- cmd: tars -v
- cmd: tars update-project
- cmd: tars -v
- cmd: tars upgrade-project -f
- cmd: tars -v
- cmd: tars add-component new -e
- cmd: tars add-component new_ --empty
- cmd: tars add-module new_module -e
- cmd: tars add-component new1 -f
- cmd: tars add-component new1_ --full
- cmd: tars add-module new1_module -f
- cmd: tars add-component new2 -b
- cmd: tars add-component new2_ --basic
- cmd: tars add-module new2_module --basic
- cmd: tars add-component new3 -a
- cmd: tars add-component new3_ --assets
- cmd: tars add-module new3_module --assets
- cmd: tars add-component new4 -i
- cmd: tars add-component new4_ --ie
- cmd: tars add-module new4_module --ie
- cmd: tars add-component new5 -d
- cmd: tars add-component new5_ --data
- cmd: tars add-module new5_module --data
- cmd: tars add-component new6 -t
- cmd: tars add-component new6_ --template
- cmd: tars add-module new6_module --template
- cmd: tars add-page main.html
- cmd: tars add-page inner
- cmd: tars add-page contacts -e
- cmd: tars add-page contacts_ --empty
- cmd: tars build --release --ie