From 6af7781c84462a97e3f8fe6552abb8ac77164db3 Mon Sep 17 00:00:00 2001 From: Pablo Garrido Date: Thu, 5 Oct 2023 09:16:00 +0200 Subject: [PATCH] Patch CI (#208) Remove when https://github.com/colcon/colcon-python-setup-py/issues/56 is solved (cherry picked from commit d0e63d9ab1d4b1b2777e68b715c5ea6d20ad68f4) --- .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 25182825..5328185d 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 9c1ccf37..38ca16e0 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: |