sandynz commented on issue #38298: URL: https://github.com/apache/shardingsphere/issues/38298#issuecomment-3983951285
I'll monitor similar CI failure later, and do some improvement if necessary. ## Possible solution ### Solution 1. Use `github.event.pull_request.head.sha` in `actions/checkout` (not preferred) ``` - uses: actions/[email protected] with: ref: ${{ github.event.pull_request.head.sha }} ``` It could avoid this CI failure. Then PR could not reflect latest master branch changes, it might hide CI failure and merge error-prone code into master branch. ### Solution 2. Take source code snapshot and reuse it in matrix jobs (preferred) Take source code snapshot in prepare-e2e-artifacts job, and recover source code in e2e-sql matrix jobs. Not sure it could be implemented or not. I'll investigate it later if necessary. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
