mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-01 00:29:42 +01:00
14 lines
364 B
Bash
Executable file
14 lines
364 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Builds a test image and runs the tests inside.
|
|
|
|
set -eux -o pipefail
|
|
|
|
IMAGE_NAME=tensorflow/haskell/ci_build:lts8
|
|
|
|
# Make sure we are in the root directory of the repositiory.
|
|
cd "$( dirname "$0" )"/..
|
|
|
|
git submodule update --init --recursive
|
|
docker build -t $IMAGE_NAME -f ci_build/Dockerfile .
|
|
docker run $IMAGE_NAME stack build --pedantic --test
|