Skip to content

Commit 2cc0f4d

Browse files
committed
Fix for GitHub Actions failing for GCC build tools
GitHub Actions failing for GCC build tools Ref: tianocore#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 <[email protected]>
1 parent d25f970 commit 2cc0f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-python-uefi-gcc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on: [push, pull_request]
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414

1515
steps:
1616
- name: Checkout repository

0 commit comments

Comments
 (0)