mirror of
https://github.com/tensorflow/haskell.git
synced 2024-12-26 03:29:45 +01:00
56a629f9da
* Needed to list a newly added proto in cabal file. * Update the nightly-devel image before build.
13 lines
427 B
Bash
Executable file
13 lines
427 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 pull tensorflow/tensorflow:nightly-devel
|
|
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
|