Commit 405890b
committed
🤖 Fix: Use shell parallelism for macOS builds
Changed from Make dependency parallelism to explicit shell parallelism:
- dist-mac now runs both architectures with '&' and 'wait'
- This ensures true parallel execution (not sequential)
- dist-mac-x64/arm64 still available for individual builds
Previous approach didn't work because Make doesn't parallelize prerequisites
that all depend on 'build' - it ran them sequentially to be safe.1 parent f1bbaa9 commit 405890b
2 files changed
+10
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
165 | | - | |
166 | | - | |
167 | | - | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
168 | 173 | | |
169 | 174 | | |
170 | 175 | | |
171 | | - | |
| 176 | + | |
172 | 177 | | |
173 | 178 | | |
174 | 179 | | |
| |||
0 commit comments