CONTRIBUTING.md include basic Docker CI command

This commit is contained in:
Andrew Hundt 2017-06-09 16:20:47 -04:00 committed by Martin Wicke
parent 7f096b4fa1
commit b8416d4531

View File

@ -159,8 +159,11 @@ There are two ways to run TensorFlow unit tests.
bazel test ${flags} //tensorflow/python/...
```
2. Using Docker and TensorFlow's CI scripts.
2. Using [Docker](www.docker.com) and TensorFlow's CI scripts.
```bash
# Install Docker first, then this will build and run cpu tests
tensorflow/tools/ci_build/ci_build.sh CPU bazel test //tensorflow/...
```
See
[TensorFlow Builds](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/ci_build) for details.