-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
ci.yml
61 lines (47 loc) · 1.11 KB
/
ci.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
jobs:
- job: libshogun
displayName: Linux libshogun
pool:
vmImage: ubuntu-16.04
variables:
testRunTitle: '$(build.sourceBranchName)-debian'
testRunPlatform: debian
imageName: 'shogun/shogun-dev'
steps:
- template: ./docker-steps.yml
- job: python
displayName: Python Interface
dependsOn: libshogun
pool:
vmImage: ubuntu-16.04
variables:
testRunTitle: '$(build.sourceBranchName)-debian'
testRunPlatform: debian
imageName: 'shogun/shogun-dev'
steps:
- template: ./docker-steps.yml
parameters:
cmakeOptions: 'DINTERFACE_PYTHON=ON'
- job: macOS
displayName: macOS CI Tests
variables:
testRunTitle: '$(build.sourceBranchName)-macos'
testRunPlatform: macos
pool:
vmImage: xcode9-macos10.13
steps:
- template: ./macos-steps.yml
- job: Windows
displayName: Windows CI Tests
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
py36:
CONDA_PY: "3.6.*"
CONDA_ENV: shogun
steps:
- template: ./windows-steps.yml
parameters:
buildConfiguration: Release
generator: Visual Studio 15 2017 Win64