1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 19:13:34 +02:00
tensorflow-haskell/ci_build/outer_launch_tests.sh
Greg Steuck d050ec2654 Semi-functional continuous integration test.
- Uses docker to put everything together.
- stack is running on "raw" system, similar to MacOS build.
- Still not finding libtensorflow_c.so in tensorflow-core-ops setup.
2016-10-27 18:59:33 -07:00

12 lines
240 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 -ti $IMAGE_NAME stack test