From 8c63c3f92b0329b85182bb0dcce371115c4a837a Mon Sep 17 00:00:00 2001 From: Pablo Garrido Date: Thu, 5 Oct 2023 07:42:03 +0200 Subject: [PATCH] Patch CI Remove when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved --- .github/workflows/ci.yml | 8 ++++++++ .github/workflows/nightly.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19612375..537d8f6a 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,14 @@ jobs: # this installs the modules also for global python interpreter, needed for IDF v5 /usr/bin/pip3 install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources + # This line can be removed when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved + - name: Patch setuptools + shell: bash + if: matrix.idf_version == 'espressif/idf:release-v4.4' + run: | + . $IDF_PATH/export.sh + pip3 install setuptools==68.1.2 + - name: Build sample - int32_publisher shell: bash run: | diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ff9804db..66e56551 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -42,6 +42,14 @@ jobs: # this installs the modules also for global python interpreter, needed for IDF v5 /usr/bin/pip3 install catkin_pkg lark-parser empy colcon-common-extensions importlib-resources + # This line can be removed when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved + - name: Patch setuptools + shell: bash + if: matrix.idf_version == 'espressif/idf:release-v4.4' + run: | + . $IDF_PATH/export.sh + pip3 install setuptools==68.1.2 + - name: Build sample - int32_publisher shell: bash run: |