mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
27 lines
587 B
YAML
27 lines
587 B
YAML
sudo: required
|
|
|
|
language: generic
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
- os: osx
|
|
osx_image: xcode7
|
|
|
|
before_install:
|
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get -y update ; fi
|
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get -y install git ; fi
|
|
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo add-apt-repository --yes ppa:kalakris/cmake ; fi
|
|
|
|
install:
|
|
- ./install-dependencies.sh
|
|
- ./setup.sh
|
|
- ./build.sh
|
|
|
|
script:
|
|
- source setup-env.sh
|
|
- cd test
|
|
- python runtest.py
|
|
- python array_test.py
|
|
- python datasets_test.py
|