From 41b18f6c041f6a99f8e11c37caadbca5591c896a Mon Sep 17 00:00:00 2001 From: sllynn Date: Fri, 29 Nov 2024 17:56:24 +0000 Subject: [PATCH] gdal_calc python target? --- .github/actions/scala_build/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/scala_build/action.yml b/.github/actions/scala_build/action.yml index ed1c069ef..a81a477e3 100644 --- a/.github/actions/scala_build/action.yml +++ b/.github/actions/scala_build/action.yml @@ -32,14 +32,14 @@ runs: shell: bash run : | cd python && /databricks/python3/bin/pip install . - sudo update-alternatives --install /usr/bin/python3 python3 /databricks/python3/bin/python 1 # echo "/databricks/python3/bin" >> "$GITHUB_PATH" + sudo update-alternatives --install /usr/bin/python3 python3 /databricks/python3/bin/python 1 - name: Test and build the scala JAR - skip tests is false if: inputs.skip_tests == 'false' shell: bash run: | which python3 - python3 -c 'import numpy as np; print(np.__version__)' + /databricks/python3/bin/python3 -c 'import numpy as np; print(np.__version__)' sudo mvn -q clean install - name: Build the scala JAR - skip tests is true if: inputs.skip_tests == 'true'