From cf22b7ff04e9f51114762a4c7443d544bd7e0e8d Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:11:08 -0500 Subject: [PATCH 1/6] Latest pip version of setuptools is broken. Install specific version --- .github/actions/setup-base/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index 7f8659523b..cbb1e12f76 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -33,6 +33,7 @@ runs: shell: bash run: | python -m pip install --upgrade pip + pip install -U setuptools<72.0.0 pip install -U platformio adafruit-nrfutil pip install -U meshtastic --pre From 8c0ff89972f017b9f478a53ed8777a6c37d8314c Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:14:32 -0500 Subject: [PATCH 2/6] Trunk --- .github/actions/setup-base/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index cbb1e12f76..f74f702a7e 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -11,7 +11,7 @@ runs: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} - - name: Install dependencies + - name: Install dependencies shell: bash run: | sudo apt-get -y update --fix-missing From c501cc501dc646607cbf7e5799daeaeadd599671 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:37:19 -0500 Subject: [PATCH 3/6] Pip pip cheerios plz --- .github/actions/setup-base/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index f74f702a7e..80fa8db9d7 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -32,8 +32,8 @@ runs: - name: Upgrade python tools shell: bash run: | + pip install --no-build-isolation --no-cache-dir "setuptools<72" python -m pip install --upgrade pip - pip install -U setuptools<72.0.0 pip install -U platformio adafruit-nrfutil pip install -U meshtastic --pre From 2ffc93324db330d17b68f5ed6d6db5bc83bb22e6 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:38:34 -0500 Subject: [PATCH 4/6] After --- .github/actions/setup-base/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index 80fa8db9d7..1fb3d6c96f 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -32,8 +32,8 @@ runs: - name: Upgrade python tools shell: bash run: | - pip install --no-build-isolation --no-cache-dir "setuptools<72" python -m pip install --upgrade pip + pip install --no-build-isolation --no-cache-dir "setuptools<72" pip install -U platformio adafruit-nrfutil pip install -U meshtastic --pre From 4aa6f60e95a6d3fb88f08110e65ff925f56d32c6 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:41:26 -0500 Subject: [PATCH 5/6] Maybe remove pip cache --- .github/actions/setup-base/action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index 1fb3d6c96f..e19eff7863 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -22,12 +22,12 @@ runs: with: python-version: 3.x - - name: Cache python libs - uses: actions/cache@v4 - id: cache-pip # needed in if test - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip + # - name: Cache python libs + # uses: actions/cache@v4 + # id: cache-pip # needed in if test + # with: + # path: ~/.cache/pip + # key: ${{ runner.os }}-pip - name: Upgrade python tools shell: bash From 6813b8e4e9bf5e4f424070a9b92392f7daa6c366 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 29 Jul 2024 06:52:14 -0500 Subject: [PATCH 6/6] Just literally trying stuff at this point --- .github/actions/setup-base/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-base/action.yml b/.github/actions/setup-base/action.yml index e19eff7863..61466655d1 100644 --- a/.github/actions/setup-base/action.yml +++ b/.github/actions/setup-base/action.yml @@ -33,9 +33,9 @@ runs: shell: bash run: | python -m pip install --upgrade pip - pip install --no-build-isolation --no-cache-dir "setuptools<72" - pip install -U platformio adafruit-nrfutil - pip install -U meshtastic --pre + pip install -U --no-build-isolation --no-cache-dir "setuptools<72" + pip install -U platformio adafruit-nrfutil --no-build-isolation + pip install -U meshtastic --pre --no-build-isolation - name: Upgrade platformio shell: bash