This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
executable file
·86 lines (75 loc) · 2.07 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# See http://www.appveyor.com/docs/appveyor-yml for many more options
version: 0.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
except:
- gh-pages
skip_tags: true
image:
- Visual Studio 2017
- Ubuntu
for:
- matrix:
only:
- PowerShell: 6
image: Visual Studio 2017
cache:
- '%USERPROFILE%\Documents\PowerShell\Modules -> requirements.psd1'
- '%APPDATA%\npm'
- '%APPDATA%\npm-cache'
- '%LOCALAPPDATA%\pip\cache -> requirements.txt'
- 'C:\Python27\Lib\site-packages -> requirements.txt'
- 'C:\Python27\Scripts\mkdocs.exe -> requirements.txt'
build_script:
- pwsh: ./build/build.ps1 -DeploymentMode
- matrix:
only:
- PowerShell: 6
image: Ubuntu
cache:
- '$HOME/.local/share/powershell/Modules -> requirements.psd1'
- '$HOME/.nvm'
- '$HOME/.npm'
- '$HOME/.cache/pip -> requirements.txt'
- '$HOME/.local/lib/python2.7/site-packages -> requirements.txt'
- '$HOME/.local/bin/mkdocs -> requirements.txt'
build_script:
- pwsh: ./build/build.ps1
- matrix:
only:
- PowerShell: 5
cache:
- '%USERPROFILE%\Documents\WindowsPowerShell\Modules -> requirements.psd1'
- '%APPDATA%\npm'
- '%APPDATA%\npm-cache'
- '%LOCALAPPDATA%\pip\cache -> requirements.txt'
- 'C:\Python27\Lib\site-packages -> requirements.txt'
- 'C:\Python27\Scripts\mkdocs.exe -> requirements.txt'
build_script:
- ps: ./build/build.ps1
- matrix:
only:
- PowerShell: 6
cache:
- '%USERPROFILE%\Documents\PowerShell\Modules -> requirements.psd1'
- '%APPDATA%\npm'
- '%APPDATA%\npm-cache'
- '%LOCALAPPDATA%\pip\cache -> requirements.txt'
- 'C:\Python27\Lib\site-packages -> requirements.txt'
- 'C:\Python27\Scripts\mkdocs.exe -> requirements.txt'
build_script:
- pwsh: ./build/build.ps1
matrix:
exclude:
- PowerShell: 5
image: Ubuntu
clone_depth: 50
environment:
NUGET_API_KEY:
secure: u2jbw68/5JWUmA5z8fBok8TNO0BAJ41CSNGUJeVAtrIgDJ7p7TqW6dTbFmytP9UG
matrix:
- PowerShell: 5
- PowerShell: 6
test: off
deploy: off