Skip to content

Commit 10a5f35

Browse files
committed
Patch failing TensorFlow CI.
1 parent d1398e2 commit 10a5f35

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

ML-Frameworks/tensorflow-aarch64/build.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,4 @@ fi
7272
tf_wheel_name=$(grep -o "tensorflow-.*.whl" $build_log | head -n -1 | tail -n 1)
7373
echo $tf_wheel_name
7474

75-
docker build -t toolsolutions-tensorflow:latest \
76-
--build-arg TENSORFLOW_WHEEL=results/$tf_wheel_name \
77-
--build-arg DOCKER_IMAGE_MIRROR \
78-
--build-arg USERNAME=ubuntu \
79-
.
75+
./dockerize.sh "results/$tf_wheel_name" --build-only

ML-Frameworks/tensorflow-aarch64/dockerize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set -eux -o pipefail
2121

2222
help_str="dockerize.sh takes a TensorFlow wheel as argument. It \
2323
installs the wheel inside a Docker container with examples and requirements."
24-
if [ "$#" -ne 1 ]; then
24+
if [ "$#" -lt 1 ]; then
2525
echo $help_str
2626
exit 1
2727
fi

0 commit comments

Comments
 (0)