Commit 70e2d8b
committed
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.1 parent a9e4768 commit 70e2d8b
File tree
2 files changed
+12
-0
lines changed- .github/workflows
2 files changed
+12
-0
lines changedLines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
50 | 54 | | |
51 | 55 | | |
52 | 56 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
26 | 30 | | |
27 | 31 | | |
28 | 32 | | |
| |||
51 | 55 | | |
52 | 56 | | |
53 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
54 | 62 | | |
55 | 63 | | |
56 | 64 | | |
| |||
0 commit comments