mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-17 16:39:43 +01:00
12 lines
240 B
Bash
12 lines
240 B
Bash
|
#!/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
|