-
Notifications
You must be signed in to change notification settings - Fork 85
/
appveyor.yml
118 lines (60 loc) · 2.31 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
version: 1.0.{build}
environment:
fast_finish: true
install:
- ps: >-
# Make sure building libsweep works
pushd libsweep
mkdir build
cd build
cmake .. -G "Visual Studio 14 2015"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
cmake --build . --config Release
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
# Then build and install dummy library to test bindings against without device attached
cmake .. -DDUMMY=On -G "Visual Studio 14 2015"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
cmake --build . --config Release
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
cmake --build . --target install --config Release
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd
# Add the installation dir to the environment variable PATH
$env:path += ";C:\Program Files (x86)\sweep\lib;C:\Program Files (x86)\sweep\include;C:\Program Files (x86)\sweep\include\sweep"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
# Install node bindings
pushd sweepjs
npm install
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd
# Install python bindings
pushd sweeppy
python setup.py install
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd
build_script:
- ps: >-
# Test libsweep examples against the dummy library
pushd libsweep/examples
mkdir build
cd build
cmake .. -G "Visual Studio 14 2015"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
cmake --build . --config Release
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
cd Release
./example-c PLACEHOLDER
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
./example-c++ PLACEHOLDER
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd
# Test SweepPy bindings against the dummy library
pushd sweeppy
python -m sweeppy COM0
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd
# Test SweepJs bindings against the dummy library
pushd sweepjs
node index.js COM0
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
popd