-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
51 lines (51 loc) · 1.56 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
environment:
matrix:
- nodejs_version: '8'
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- npm install --global npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- npm install
- pip install tox
- pip install requests
- cinst -y curl
- SET PATH=C:\Program Files\curl;%PATH%
- ps: Set-Service wuauserv -StartupType Manual
- cinst -y php --allow-empty-checksums
- cd c:\tools\php72
- copy php.ini-production php.ini
- echo date.timezone="UTC" >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_curl.dll >> php.ini
- echo extension=php_mbstring.dll >> php.ini
- cd %APPVEYOR_BUILD_FOLDER%
matrix:
fast_finish: true
build: off
shallow_clone: true
before_test:
- cinst pandoc
- pandoc -v
test_script:
- refreshenv
- node --version
- npm --version
- npm run build
- npm run test-base
cache:
- '%APPDATA%\npm-cache'
- '%LOCALAPPDATA%\pip\Cache'
after_build:
# Remove old or huge cache files to hopefully not exceed the 1GB cache limit.
#
# If the cache limit is reached, the cache will not be updated (of not even
# created in the first run). So this is a trade of between keeping the cache
# current and having a cache at all.
# NB: This is done only `on_success` since the cache in uploaded only on
# success anyway.
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -mtime +360 -delete
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -size +10M -delete
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -empty -delete
# Show size of cache
- C:\cygwin\bin\du -hs "%LOCALAPPDATA%\pip\Cache"