forked from bytedeco/javacpp-presets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
123 lines (111 loc) · 3.22 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
version: '{build}'
os: Visual Studio 2015
cache:
- C:\Users\appveyor\.m2 -> .appveyor.yml
- C:\Downloads -> .appveyor.yml
environment:
matrix:
- PROJ: "opencv,artoolkitplus,chilitags,flandmark"
OS: windows-x86
- PROJ: "ffmpeg"
OS: windows-x86
- PROJ: "flycapture,spinnaker,libdc1394,libfreenect,librealsense,videoinput"
OS: windows-x86
- PROJ: "hdf5"
OS: windows-x86
- PROJ: "mkl"
OS: windows-x86
- PROJ: "openblas"
OS: windows-x86
- PROJ: "arpack-ng,cminpack,fftw,gsl"
OS: windows-x86
- PROJ: "llvm"
OS: windows-x86
- PROJ: "leptonica,tesseract"
OS: windows-x86
- PROJ: "ale"
OS: windows-x86
- PROJ: "liquidfun"
OS: windows-x86
- PROJ: "systems"
OS: windows-x86
- PROJ: "opencv,artoolkitplus,chilitags,flandmark"
OS: windows-x86_64
- PROJ: "ffmpeg"
OS: windows-x86_64
- PROJ: "flycapture,spinnaker,libdc1394,libfreenect,libfreenect2,librealsense,videoinput"
OS: windows-x86_64
- PROJ: "hdf5"
OS: windows-x86_64
- PROJ: "mkl"
OS: windows-x86_64
- PROJ: "mkl-dnn"
OS: windows-x86_64
- PROJ: "openblas"
OS: windows-x86_64
- PROJ: "arpack-ng,cminpack,fftw,gsl"
OS: windows-x86_64
- PROJ: "cpython"
OS: windows-x86_64
- PROJ: "llvm"
OS: windows-x86_64
- PROJ: "libpostal"
OS: windows-x86_64
- PROJ: "leptonica,tesseract"
OS: windows-x86_64
- PROJ: "cuda"
OS: windows-x86_64
- PROJ: "mxnet"
OS: windows-x86_64
- PROJ: "tensorflow"
OS: windows-x86_64
- PROJ: "ale"
OS: windows-x86_64
- PROJ: "liquidfun"
OS: windows-x86_64
- PROJ: "systems"
OS: windows-x86_64
- PROJ: "opencv"
OS: windows-x86_64
EXT: -gpu
- PROJ: "mxnet"
OS: windows-x86_64
EXT: -gpu
# - PROJ: "tensorflow"
# OS: windows-x86_64
# EXT: -gpu
# PARTIAL_CPPBUILD: "1"
- PROJ: "tensorflow"
OS: windows-x86_64
EXT: -gpu
for:
-
matrix:
only:
- PARTIAL_CPPBUILD: "1"
after_build:
- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\%PROJ%-cppbuild.zip"
init:
# uncomment this if you need to enable RDP for this build run
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- wmic computersystem set AutomaticManagedPagefile=False
- wmic pagefile list /format:list
# - wmic pagefileset create name="C:\pagefile.sys"
- wmic pagefileset where name="C:\\pagefile.sys" set InitialSize=8192,MaximumSize=8192
- wmic pagefileset list /format:list
- ps: write-host "Restarting..."
- ps: sleep 5
- ps: restart-computer -f
- ps: sleep 5
- ps: write-host "Restarted."
- wmic pagefile list /format:list
install:
- 'echo install section'
build_script:
- 'echo build step for %PROJ%'
- '%APPVEYOR_BUILD_FOLDER%\ci\build.cmd "%PROJ%"'
test_script:
- 'echo no tests'
on_finish:
# uncomment this for the RDP session to remain active after the build ends
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))