-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
bump go 1.23; implement one iter.Seq #14353
Conversation
Quality Gate passedIssues Measures |
Quality Gate passedIssues Measures |
Below is an analysis created by an LLM. Be mindful of hallucinations and verify accuracy. WF: CI Core#92327eb1. Invalid reference to runtime.stopTheWorld in abigen:[Clean Go Tidy & Generate]Source of Error:
Why: The error is caused by an invalid reference to Suggested fix: Update the 2. Test failures due to sensitive string checks and other issues:[Core Tests (go_core_tests)]Source of Error:
Why: The test suite failed, possibly due to assertions that did not pass or unexpected behavior in the application logic. The logs indicate issues with sensitive string checks and other test failures. Suggested fix: Review the failing tests and the associated application logic. Fix any bugs or incorrect assumptions in the tests or the code being tested. Ensure that all configurations and environment setups are correct for the tests. 3. Panic due to slice bounds out of range in OCR key tests:[Flakey Test Detection]Source of Error:
Why: The panic is caused by attempting to access a slice beyond its capacity, which is a common runtime error in Go. This indicates a bug in the code where slice boundaries are not correctly checked. Suggested fix: Review and correct the slice operations in the |
AER Report: CI Coreaer_workflow , commit , Detect Changes , Clean Go Tidy & Generate , Scheduled Run Frequency , Find New Flaky Tests In Chainlink Project / Get Tests To Run , lint , Core Tests (go_core_tests) , Core Tests (go_core_tests_integration) , Core Tests (go_core_ccip_deployment_tests) , Core Tests (go_core_race_tests) , Core Tests (go_core_fuzz) , Find New Flaky Tests In Deployment Project / Get Tests To Run , Find New Flaky Tests In Deployment Project / Run Tests , Find New Flaky Tests In Chainlink Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/cmd, ubuntu-latest) , Find New Flaky Tests In Deployment Project / Report , Find New Flaky Tests In Chainlink Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/services/keystore/keys/ocrkey, ubuntu-la... , Find New Flaky Tests In Chainlink Project / Report , Flakey Test Detection , SonarQube Scan 1. CSA key does not exist:
|
a344015
to
f43d9c7
Compare
Conflicts resolved |
Flaky Test Detector for
|
* bump go 1.23; implement one iter.Seq * fix linter issues
This PR bumps the core modules to go 1.23, and demonstrates the new range over
iter.Seq
API by converting a mutable slice.