Fix CI build failures caused by Ubuntu 21.10 going EOL #3147
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.
Pull Request Prelude
Changes Proposed
This fixes GitHub Actions CI build failures caused by an unsupported Ubuntu distribution not finding its package repositories online.
Ubuntu 21.10, used by the
gcc-10
,gcc-9
andgcc-8
CI builds is EOL since 2022-07-14. The image has been replaced with alternative versions that include the same packages.The following changes have been made:
gcc-10
andgcc-9
have been moved from 21.10 to to 22.04 LTS, which will be under standard support until April 2027 and EOL in April 2032 (workflowgccold1
).gcc-8
has been moved from 21.10 to to 20.04 LTS, which will be under standard support until April 2025 and EOL in April 2030 (moved from workflowgccold1
togccold2
).gcc-7
has been moved from 18.04 LTS to to 20.04 LTS, as described above (workflowgccold2
).gcc-6
,gcc-5
andgcc-4.8
have been left on 18.04 LTS, which will be under standard support until April 2023 and EOL in April 2028 (moved from workflowgccold2
togccold3
).