Skip to content

Commit 3039334

Browse files
authored
Merge pull request #379 from puneetmatharu/patch-use-of-dockerize-in-tf-build-sh
Patch failing TensorFlow build in CI
2 parents 86953d6 + 10a5f35 commit 3039334

3 files changed

Lines changed: 3 additions & 7 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

ML-Frameworks/tensorflow-aarch64/get-source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ git-shallow-clone https://github.com/tensorflow/tensorflow.git $TENSORFLOW_HASH
3131
# Apply TensorFlow WIP patches here
3232

3333
# https://github.com/tensorflow/tensorflow/pull/100882 - build(aarch64): Update Compute Library to 52.4.0
34-
apply-github-patch tensorflow/tensorflow 0cd9bed2d5f5456576d3bcd0b80aba7cd478ee26
34+
apply-github-patch tensorflow/tensorflow 33a28c399c24ed03e94bd8d8fee289f67946fc7b
3535
)

0 commit comments

Comments
 (0)