Skip to content

Commit

Permalink
Fix for GitHub Actions failing for GCC build tools
Browse files Browse the repository at this point in the history
GitHub Actions failing for GCC build tools

Ref: #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]>
  • Loading branch information
jpshivakavi committed Dec 16, 2024
1 parent d25f970 commit 2cc0f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-python-uefi-gcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
Expand Down

0 comments on commit 2cc0f4d

Please sign in to comment.