forked from emmaggie/nd4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
96 lines (95 loc) · 2.54 KB
/
.travis.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
branches:
only:
- master
notifications:
email: false
dist: trusty
sudo: required
cache:
directories:
- $HOME/.m2
language: java
services:
- docker
matrix:
include:
- os: linux
env: OS=android-arm SCALA=2.10
install: true
script: bash ./ci/build-android.sh
- os: linux
env: OS=android-arm64 SCALA=2.11
install: true
script: bash ./ci/build-android.sh
- os: linux
env: OS=android-x86 SCALA=2.10
install: true
script: bash ./ci/build-android.sh
- os: linux
env: OS=android-x86_64 SCALA=2.11
install: true
script: bash ./ci/build-android.sh
- os: osx
osx_image: xcode7.3
env: OS=ios-arm64 SCALA=2.10
install: true
script: bash ./ci/build-ios.sh
- os: osx
osx_image: xcode7.3
env: OS=ios-x86_64 SCALA=2.11
install: true
script: bash ./ci/build-ios.sh
- os: linux
env: OS=linux-x86_64 SCALA=2.10
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: linux
env: OS=linux-x86_64 EXT=avx2 SCALA=2.11
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: linux
env: OS=linux-x86_64 EXT=avx512 SCALA=2.11
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: linux
env: OS=linux-x86_64 CUDA=8.0 SCALA=2.10
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: linux
env: OS=linux-x86_64 CUDA=9.0 SCALA=2.11
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: linux
env: OS=linux-x86_64 CUDA=9.1 SCALA=2.11
install: true
script: bash ./ci/build-linux-x86_64.sh
- os: osx
osx_image: xcode7.3
env: OS=macosx-x86_64 SCALA=2.10
install: true
script: bash ./ci/build-macosx-x86_64.sh
- os: osx
osx_image: xcode7.3
env: OS=macosx-x86_64 EXT=avx2 SCALA=2.11
install: true
script: bash ./ci/build-macosx-x86_64.sh
- os: osx
osx_image: xcode9.2
env: OS=macosx-x86_64 EXT=avx512 SCALA=2.11
install: true
script: bash ./ci/build-macosx-x86_64.sh
- os: osx
osx_image: xcode7.3
env: OS=macosx-x86_64 CUDA=8.0 SCALA=2.10
install: true
script: bash ./ci/build-macosx-x86_64.sh
- os: osx
osx_image: xcode8.3
env: OS=macosx-x86_64 CUDA=9.0 SCALA=2.11
install: true
script: bash ./ci/build-macosx-x86_64.sh
- os: osx
osx_image: xcode8.3
env: OS=macosx-x86_64 CUDA=9.1 SCALA=2.11
install: true
script: bash ./ci/build-macosx-x86_64.sh