Fix for GitHub Actions failing for GCC build tools #23
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 ubuntu 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]