mirror of
https://github.com/wassname/ray.git
synced 2026-08-05 13:21:03 +08:00
* Migrate repositories to ray-project. * Update numbuf to the migrated version.
25 lines
1.0 KiB
YAML
25 lines
1.0 KiB
YAML
sudo: required
|
|
|
|
language: generic
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
- os: osx
|
|
osx_image: xcode7
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- ./test/travis-ci/install.sh
|
|
|
|
script:
|
|
- ./test/travis-ci/run_test.sh --docker-image=ray-project/ray:test-base 'source setup-env.sh && cd test && python runtest.py'
|
|
- ./test/travis-ci/run_test.sh --docker-image=ray-project/ray:test-base 'source setup-env.sh && cd test && python array_test.py'
|
|
- ./test/travis-ci/run_test.sh --docker-image=ray-project/ray:test-base 'source setup-env.sh && cd test && python failure_test.py'
|
|
- ./test/travis-ci/run_test.sh --docker-image=ray-project/ray:test-base 'source setup-env.sh && cd test && python microbenchmarks.py'
|
|
- ./test/travis-ci/run_test.sh --docker-only --shm-size=500m --docker-image=ray-project/ray:test-examples 'source setup-env.sh && cd examples/hyperopt && python driver.py'
|
|
- ./test/travis-ci/run_test.sh --docker-only --shm-size=500m --docker-image=ray-project/ray:test-examples 'source setup-env.sh && cd examples/lbfgs && python driver.py'
|