Commit 5ff0b4a
fix(ios): make Podfile.lock SPEC CHECKSUMS deterministic across machines
Two sources of non-determinism cause Podfile.lock to differ between
machines, breaking `pod install --deployment` in CI:
1. Yoga.podspec: Dir.glob returns files in filesystem-dependent order.
Add .sort to ensure consistent ordering regardless of OS/filesystem.
2. hermes-engine.podspec: require.resolve with __dir__ produces an
absolute path containing the user's home directory. Replace with a
$(PODS_ROOT)-relative path that resolves at build time instead.
Fixes #56975
Co-authored-by: Cursor <cursoragent@cursor.com>1 parent b8bb88d commit 5ff0b4a
2 files changed
Lines changed: 2 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
Lines changed: 1 addition & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | 70 | | |
75 | | - | |
| 71 | + | |
76 | 72 | | |
77 | 73 | | |
78 | 74 | | |
| |||
0 commit comments