You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix runtime interface client workflows to use local serialization dependency
Add local build step for aws-lambda-java-serialization before building runtime interface client.
## Why This Fix is Needed
The runtime interface client depends on aws-lambda-java-serialization version 1.1.6,
but this version doesn't exist in Maven Central yet. By building and installing the
serialization package locally first, we ensure:
1. The correct version (1.1.6) is available in the local Maven repository
2. The runtime interface client build won't fail looking for a non-existent version on Maven Central
3. The workflow tests the actual code changes together
## Changes Made
- runtime-interface-client_merge_to_main.yml: Added local serialization build step
- runtime-interface-client_pr.yml: Added local serialization build step to both smoke-test and build jobs
This ensures CI/CD pipeline works correctly with the new dependency versions.
0 commit comments