mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
8 lines
255 B
Bash
8 lines
255 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# Hyperparameter optimization test
|
||
|
# Runs only on Docker under Linux
|
||
|
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
||
|
docker run --shm-size=500m amplab/ray:test-examples bash -c 'source setup-env.sh && cd examples/hyperopt && python driver.py'
|
||
|
fi
|