forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (37 loc) · 961 Bytes
/
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
version: '{build}'
branches:
except:
- /^dev-bundle-/
skip_branch_with_pr: true
clone_folder: C:\projects\meteor
image: Visual Studio 2015
environment:
METEOR_PRETTY_OUTPUT: 0
SELF_TEST_TOOL_NODE_FLAGS: " "
TOOL_NODE_FLAGS: --expose-gc
TIMEOUT_SCALE_FACTOR: 8
METEOR_HEADLESS: true
SELF_TEST_EXCLUDE: "^NULL-LEAVE-THIS-HERE-NULL$"
platform:
- x64
matrix:
fast_finish: true
allow_failures:
- platform: x64
# We don't need the actual "build", just the tests.
build: off
install:
- ps: C:\projects\meteor\scripts\windows\appveyor\install.ps1
test_script:
- ps: C:\projects\meteor\scripts\windows\appveyor\test.ps1
on_failure:
- ps: |
$npmLogsDir = "$($Env:AppData)\npm-cache\_logs"
If (Test-Path "$npmLogsDir") {
Get-ChildItem "${npmLogsDir}\*.log" |
% { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
}
cache:
- dev_bundle -> meteor
- .babel-cache
- .meteor