From fdd023ef684d62b2f76f0ab5ebcffda19d982a21 Mon Sep 17 00:00:00 2001
From: Henning Becker <43133967+beckerhe@users.noreply.github.com>
Date: Mon, 20 Nov 2023 18:59:15 +0100
Subject: [PATCH] Revert change of testing logic in gpu.Dockerfile (#167)

The nightly build machines don't have a GPU, so this test fails and
Docker images are not getting uploaded.

Reverting the change should fit it for now.
---
 tensorflow_runtime_dockerfiles/gpu.Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tensorflow_runtime_dockerfiles/gpu.Dockerfile b/tensorflow_runtime_dockerfiles/gpu.Dockerfile
index 906ab33..73512d4 100644
--- a/tensorflow_runtime_dockerfiles/gpu.Dockerfile
+++ b/tensorflow_runtime_dockerfiles/gpu.Dockerfile
@@ -52,5 +52,5 @@ CMD ["bash", "-c", "source /etc/bash.bashrc && jupyter notebook --notebook-dir=/
 FROM base as test
 
 ENV LD_LIBRARY_PATH /usr/local/cuda/lib64/stubs/:$LD_LIBRARY_PATH
-COPY test.import_gpu.sh /test.import_gpu.sh
-RUN /test.import_gpu.sh
+COPY test.import_cpu.sh /test.import_cpu.sh
+RUN /test.import_cpu.sh
-- 
GitLab