1
0
Fork 0
mirror of https://github.com/tensorflow/haskell.git synced 2024-09-29 17:47:26 +02:00
tensorflow-haskell/ci_build/outer_launch_tests.sh
Greg Steuck 72631cb9f3 Uprev to TF 1.0rc1. (#69)
* Download protoc and libtensorflow instead of running bazel.
* Explicitly set permissions of protoc.
2017-02-09 14:20:43 -08:00

12 lines
379 B
Bash
Executable file

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