-
Notifications
You must be signed in to change notification settings - Fork 2
Remove Support v7 (released in May 2019) by February 2025 #45
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
Conversation
Caution Review failedThe pull request is closed. WalkthroughThis pull request updates GitHub Actions workflows and the README. In both the build and test workflows, clang version 7 is removed from the clang-version matrix. The build workflow now downloads LLVM project files only when clang version is 8. The README has been revised to update the supported Clang tool versions table and includes new notes regarding file sizes and the planned removal of version 7 support by February 2025. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User Commit
participant GH as GitHub Actions
participant W as Build Workflow Runner
U->>GH: Push commit
GH->>W: Trigger build workflow
W->>W: Evaluate clang-version matrix (version 8 active)
alt clang version is 8
W->>W: Download LLVM project files
else clang version ≠ 8
W->>W: Skip LLVM download
end
W->>GH: Execute remaining build steps
sequenceDiagram
participant U as User Commit
participant GH as GitHub Actions
participant W as Test Workflow Runner
U->>GH: Push commit
GH->>W: Trigger test workflow
W->>W: Evaluate clang-version matrix (versions 8 to 20)
W->>W: Download clang binaries & perform tests
W->>GH: Report test results
Possibly related PRs
Suggested labels
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
I found the following message in this run https://github.com/cpp-linter/clang-tools-static-binaries/actions/runs/13275667377/job/37071217211
##[debug]Failed to download artifact after 1 retries due to ENOSPC: no space left on device, write. Retrying in 5 seconds
this made me think it's time to drop some old version support.
actions/download-artifact#377 (comment)
Summary by CodeRabbit
Chores
Documentation