Skip to content

Commit

Permalink
.github/workflows/build: install python3-distutils
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
hnez authored and ejoerns committed Nov 29, 2024
1 parent 9149d43 commit 930ea74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 930ea74

Please sign in to comment.