mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-23 11:29:43 +01:00
9f2f4e2877
* 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.
11 lines
236 B
Bash
Executable file
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
|