-
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
deployment/memory: Solana support #15850
base: yn-solana
Are you sure you want to change the base?
Conversation
@@ -516,7 +516,7 @@ func deployChainContractsSolana( | |||
if chainState.CcipRouter.IsZero() { | |||
// deploy and initialize router | |||
|
|||
programID, err := deployment.DeploySolProgramCLI("ccip_router") | |||
programID, err := deployment.DeploySolProgramCLI(chain, "ccip_router") |
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.
Should probably turn this into chain.DeployProgram("ccip_router")
AER Report: CI Coreaer_workflow , commit , Clean Go Tidy & Generate , Detect Changes , Scheduled Run Frequency , test-scripts , GolangCI Lint (core/scripts) , GolangCI Lint (.) , Core Tests (go_core_tests) , GolangCI Lint (integration-tests) , Core Tests (go_core_tests_integration) , GolangCI Lint (deployment) , Core Tests (go_core_ccip_deployment_tests) , Core Tests (go_core_fuzz) , Core Tests (go_core_race_tests) , lint , SonarQube Scan 1. Error deploying program: No such file or directory (os error 2):[go_core_ccip_deployment_tests]Source of Error:
Why: The error indicates that the deployment process is attempting to use a program ID that does not exist or cannot be found in the specified directory. This is likely due to a missing or incorrectly specified program ID file. Suggested fix: Ensure that the program ID file exists in the specified directory and that the path to the file is correctly specified in the deployment script. 2. Error deploying program: Invalid value for '--program-id <PROGRAM_ID>': No such file or directory (os error 2):[go_core_ccip_deployment_tests]Source of Error:
Why: The error indicates that the deployment process is attempting to use a program ID that does not exist or cannot be found in the specified directory. This is likely due to a missing or incorrectly specified program ID file. Suggested fix: Ensure that the program ID file exists in the specified directory and that the path to the file is correctly specified in the deployment script. 3. Panic: decode: zero length string:[go_core_ccip_deployment_tests]Source of Error:
Why: The panic is caused by attempting to decode a zero-length string into a Solana public key. This indicates that an expected value was not provided or was empty. Suggested fix: Ensure that all required values, especially those that are being decoded into public keys, are provided and are not empty. 4. Error: port is already allocated:[go_core_ccip_deployment_tests]Source of Error:
Why: The error indicates that the specified port is already in use by another process, preventing the container from starting. Suggested fix: Ensure that the ports required for the tests are free before starting the tests. You may need to modify the test setup to dynamically allocate available ports or ensure that previous tests release the ports properly. 5. Panic: freeport: cannot allocate port block:[go_core_ccip_deployment_tests]Source of Error:
|
7a5f109
to
3d4a248
Compare
5b0fd2d
to
3374431
Compare
3374431
to
75bf435
Compare
I see you updated files related to
|
c47f4a0
to
04219ae
Compare
Quality Gate passedIssues Measures |
No description provided.