mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-17 00:19:44 +01:00
d050ec2654
- 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.
11 lines
240 B
Bash
Executable file
11 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
|