1
0
Fork 0
mirror of https://github.com/tensorflow/haskell.git synced 2024-09-30 18:17:25 +02:00
tensorflow-haskell/ci_build/outer_launch_tests.sh
Greg Steuck 9f2f4e2877 Fixed CI and added indicator. (#15)
* Sorted test names.

* Don't require a terminal to run tests.

Should resolve "the input device is not a TTY" problem with Jenkins.

* Added build indicator to README.md.

* Fixed up URL.
2016-10-28 18:08:32 -07:00

11 lines
236 B
Bash
Executable file

#!/bin/bash
# Builds a test image and runs the tests inside.
set -eu -o pipefail
IMAGE_NAME=tensorflow/haskell/ci_build:v0
git submodule update
docker build -t $IMAGE_NAME -f ci_build/Dockerfile .
docker run $IMAGE_NAME stack test