-
Notifications
You must be signed in to change notification settings - Fork 1.7k
.github: update test workflow to Fedora 43 #2902
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
base: master
Are you sure you want to change the base?
Conversation
679e40f to
9c37115
Compare
|
Dependency: #2903 |
9c37115 to
1a2db22
Compare
|
Rebased past 4ce3e66 |
1a2db22 to
c36137a
Compare
c36137a to
c4ee356
Compare
Ubuntu 24.04 has too old compilers (clang 18 and gcc 13); the current ones are clang 21 and gcc 15. Update the workflow to run on Fedora 43 via a container so we access the most recent compilers. Since the basic Fedora container doesn't come with git installed, we must install it before we checkout submodules.
c4ee356 to
907cdb1
Compare
|
v4: rebased past fix (65cbae6) |
| test: | ||
| timeout-minutes: 40 | ||
| runs-on: ubuntu-24.04 | ||
| container: fedora:43 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, we should forward ~/.ccache to the container
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or maybe not, if the cache action runs inside the container.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ccache integration appears to be working:
Cacheable calls: 409 / 409 (100.0%)
Hits: 408 / 409 (99.76%)
Direct: 408 / 408 (100.0%)
Preprocessed: 0 / 408 ( 0.00%)
Misses: 1 / 409 ( 0.24%)
Local storage:
Cache size (GB): 0.0 / 0.5 ( 6.58%)
Hits: 408 / 409 (99.76%)
Misses: 1 / 409 ( 0.24%)
One miss from 65cbae6, the rest hits.
Ubuntu 24.04 has too old compilers (clang 18 and gcc 13); the current ones are clang 21 and gcc 15.
Update the workflow to run on Fedora 43 via a container so we access the most recent compilers.