Update actions/checkout in GitHub Actions to v4#63
Merged
martinmoene merged 2 commits intononstd-lite:masterfrom Jan 15, 2024
Merged
Update actions/checkout in GitHub Actions to v4#63martinmoene merged 2 commits intononstd-lite:masterfrom
martinmoene merged 2 commits intononstd-lite:masterfrom
Conversation
Contributor
Author
|
The logs of the failed clang jobs contain (among others) the following error messages: I am not completely sure, but it may be related to an open issue with the GitHub runner images: actions/runner-images#8659 As far as I understand it (and I may be wrong here), Clang uses libstdc++, the C++ standard library implementation of GCC, and those particular versions seem to be incompatible with each other. So a possible workaround may be to try different versions of libstdc++. |
See <actions/runner-images#8659> for more information. Currently, Clang and libstdc++ provided by the GitHub Actions runner image are incompatible. The basic idea of this workaround is to remove the incompatible g++ 13 and its C++ standard library and replace that with a compatible version of libstdc++.
Contributor
Author
|
I've just added a workaround for the above issue in commit 97feee7. Let's see whether this works. |
Contributor
Author
|
It seems to work, both clang build jobs are green. :) |
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.
This updates actions/checkout in the GitHub Actions workflows to v4, it's current version.
Changelog: