From 13ce43d08be70a509d1282281a2fcdac827058fb Mon Sep 17 00:00:00 2001 From: Attila Vamos Date: Wed, 29 Jan 2025 13:48:21 +0000 Subject: [PATCH] WIP: change tensorflow to tensorflow-cpu in install and add tf version log Signed-off-by: Attila Vamos --- .github/workflows/bundleTest-thor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bundleTest-thor.yml b/.github/workflows/bundleTest-thor.yml index fc236b7946a..0cb21836126 100644 --- a/.github/workflows/bundleTest-thor.yml +++ b/.github/workflows/bundleTest-thor.yml @@ -132,9 +132,12 @@ jobs: - name: Install ML Dependencies shell: "bash" + continue-on-error: true run: | sudo apt install libsvm-dev libsvm-tools - sudo pip install tensorflow numpy keras + sudo pip install tensorflow-cpu numpy keras + + echo "Tensorflow version: $(python3 -c 'import tensorflow as tf; print(tf.__version__)')" - name: Start HPCC-Platform shell: "bash"