33 lines
757 B
YAML
33 lines
757 B
YAML
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
notifications:
|
||
|
email: false
|
||
|
dist: trusty
|
||
|
sudo: false
|
||
|
cache:
|
||
|
directories:
|
||
|
- $HOME/.m2
|
||
|
language: java
|
||
|
jdk:
|
||
|
- openjdk8
|
||
|
matrix:
|
||
|
include:
|
||
|
- os: linux
|
||
|
env: OS=linux-x86_64 CUDA=8.0 CUDNN=6 SCALA=2.10 SPARK=1
|
||
|
install: true
|
||
|
script: bash ./ci/build-linux-x86_64.sh
|
||
|
- os: linux
|
||
|
env: OS=linux-x86_64 CUDA=9.0 CUDNN=7 SCALA=2.11 SPARK=1
|
||
|
install: true
|
||
|
script: bash ./ci/build-linux-x86_64.sh
|
||
|
- os: linux
|
||
|
env: OS=linux-x86_64 CUDA=9.0 CUDNN=7 SCALA=2.11 SPARK=2
|
||
|
install: true
|
||
|
script: bash ./ci/build-linux-x86_64.sh
|
||
|
- os: linux
|
||
|
env: OS=linux-x86_64 CUDA=9.1 CUDNN=7 SCALA=2.11 SPARK=2
|
||
|
install: true
|
||
|
script: bash ./ci/build-linux-x86_64.sh
|
||
|
|