Skip to content

Commit 31a008c

Browse files
agattidpgeorge
authored andcommitted
tools/ci.sh: Do not assume the Python interpreter is called "python".
This commit removes the assumption made by the CI scripts that the system-provided python executable is simply named "python". The scripts will now look for a binary called "python3" first, and then fall back to "python" if that is not found. Whilst this is currently the case for the CI environment, there are no guarantees for this going forward. For example minimal CI environments set up by some developers, using the same base OS, have their python executable called "python3". Signed-off-by: Alessandro Gatti <[email protected]>
1 parent 1a7cbac commit 31a008c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/ci.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ function ci_cc3200_build {
150150

151151
# GitHub tag of ESP-IDF to use for CI (note: must be a tag or a branch)
152152
IDF_VER=v5.2.2
153-
PYTHON_VER=$(python --version | cut -d' ' -f2)
153+
PYTHON=$(command -v python3 2> /dev/null)
154+
PYTHON_VER=$(${PYTHON:-python} --version | cut -d' ' -f2)
154155

155156
export IDF_CCACHE_ENABLE=1
156157

0 commit comments

Comments
 (0)