-
-
Notifications
You must be signed in to change notification settings - Fork 644
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade GitHub Actions image used for most CI jobs and remove Python 2.7 CI testing #21396
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tdyas
added
category:internal
CI, fixes for not-yet-released features, etc.
release-notes:not-required
PR doesn't require mention in release notes
labels
Sep 11, 2024
…tect_apps_test.py
…e/parse_python_dependencies_test.py
…pendency_inference_test.py
…s_integration_test.py
…sts_pep660_test.py
tdyas
removed
the
release-notes:not-required
PR doesn't require mention in release notes
label
Sep 11, 2024
tdyas
changed the title
[WIP] upgrade GitHub Actions image used for most CI jobs
upgrade GitHub Actions image used for most CI jobs and remove Python 2.7 CI testing
Sep 11, 2024
benjyw
reviewed
Sep 12, 2024
tdyas
force-pushed
the
drop_python_2.7_ci_testing
branch
from
September 13, 2024 06:21
f6e8a1a
to
6fc7012
Compare
benjyw
approved these changes
Sep 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
As part of the Tonic / Hyper 1.0 upgrade, we need to upgrade to a newer version of the Ubuntu image used in CI (from 20.04 to at least 22.04) due to a transitive dependency requiring a newer C compiler.
Upgrade the CI image used for most CI builds to
ubuntu-22.04
. This is currently the same image asubuntu-latest
but pins the Ubuntu distribution used explicitly. (The distribution is pinned to 22.04 for the ARM runner image, so we do not want the x86 jobs to diverge.)Python 2.7 was removed from the newer Ubuntu image, however. To avoid having to re-add Python 2.7 to the CI jobs (since it is well past its 1/1/2020 end of life date), we announced v2.24.x as no longer being tested with Python 2.7. Consequently, this PR also removes any uses of Python 2.7 from (CI) testing.