Remove deprecated ubuntu-20.04 runners [OI-3101]#1490
Merged
Conversation
armallen
commented
Aug 6, 2025
| jobs: | ||
| tests-java-1_8: | ||
| name: Test | ||
| runs-on: ubuntu-20.04 |
armallen
commented
Aug 6, 2025
| - name: Run tests | ||
| run: make test-java | ||
|
|
||
| # sonarqube: |
Contributor
Author
There was a problem hiding this comment.
No need to comment out, saved in git history.
armallen
commented
Aug 6, 2025
| name: Test | ||
| runs-on: ubuntu-20.04 | ||
| runs-on: ubuntu-24.04 | ||
| container: ubuntu:20.04 |
Contributor
Author
There was a problem hiding this comment.
These java tests require an old java version, so we still run ubuntu 20.04 in a container
|
richarddeurloo
approved these changes
Aug 6, 2025
Contributor
richarddeurloo
left a comment
There was a problem hiding this comment.
Thanks for taking care of this @armallen.
Contributor
|
Can we merge this in? @armallen |
woodfell
approved these changes
Aug 7, 2025
Madhunika-atmakuri
approved these changes
Aug 7, 2025
pcrumley
approved these changes
Aug 7, 2025
This file contains hidden or 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
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.



Description
While working on #1487 I noticed several pipelines pipelines are failing/timing out (example: https://github.com/swift-nav/libsbp/actions/runs/16514255607/job/46702019004).
These are relying on deprecated github actions runners (ubuntu-20.04), which are not available anymore. This PR removes as much ubuntu-20.04 references as possible.
With this PR, all existing libsbp CI workflows are functional 🎉
API compatibility
No API change
Related PRs
Implemented while working on #1487