From 930ea748b6c80e41e5cd3db12033cb1de88f7305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonard=20G=C3=B6hrs?= Date: Fri, 29 Nov 2024 10:11:31 +0100 Subject: [PATCH] .github/workflows/build: install python3-distutils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the following error when building on our Debian bookworm based self-hosted runner: > ERROR: OE-core's config sanity checker detected a potential misconfiguration. > Either fix the cause of this error or at your own risk disable the checker (see sanity.conf). > Following is the list of potential problems / advisories: > > Your Python 3 is not a full install. Please install the module distutils.sysconfig (see the Getting Started guide for further information). Signed-off-by: Leonard Göhrs --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21cfd11..f804cb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Install required packages run: | - sudo apt-get -q -y --no-install-recommends install diffstat + sudo apt-get -q -y --no-install-recommends install diffstat python3-distutils - name: Checkout uses: actions/checkout@v4 with: