From aa2c8f1b2ab4012db61eaba2d7a3056cc1930b99 Mon Sep 17 00:00:00 2001 From: Jayaprakash Nevara Date: Fri, 13 Dec 2024 12:34:54 +0530 Subject: [PATCH] Fix for GitHub Actions failing for GCC build tools GitHub Actions failing for GCC build tools Ref: https://github.com/tianocore/edk2-libc/issues/22 GitHub actions for the GCC build is failing with an error saying 'python3-distutils has no installation candidate'. This package is not available in the ubunutu package version 24.04. The action has been set to runs on ubuntu-latest which was using 22.04 version earlier has switched to use 24.04 version since last 2 days. So to fix the issue updated the runs on parameter in .yaml file to use 22.04 version of ubuntu. Signed-off-by: Jayaprakash N --- .github/workflows/build-python-uefi-gcc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-python-uefi-gcc.yaml b/.github/workflows/build-python-uefi-gcc.yaml index 7c9b665..5094100 100644 --- a/.github/workflows/build-python-uefi-gcc.yaml +++ b/.github/workflows/build-python-uefi-gcc.yaml @@ -10,7 +10,7 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout repository