Commit 2f26bed
committed
🤖 ci: parallelize macOS PR builds by skipping signing setup
PR builds were running x64 and arm64 sequentially (~180s) because:
1. CSC_LINK was set by the signing setup script
2. Makefile sees CSC_LINK and forces sequential builds to avoid keychain conflicts
3. But electron-builder skips signing for PRs anyway!
Fix: Skip signing setup for PRs entirely. This allows the Makefile to
run both architectures in parallel, saving ~90 seconds per PR build.
Evidence from run #19845830777:
- 03:24:40 "🔐 Code signing enabled - building sequentially..."
- 03:26:12 "Current build is a part of pull request, code signing will be skipped"
- x64: 03:26:12 → 03:27:43 (~91s)
- arm64: 03:27:59 → 03:29:29 (~90s) - started AFTER x64 finished
With this change, both will build simultaneously.
_Generated with mux_1 parent 1e3dce5 commit 2f26bed
1 file changed
+5
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
21 | 24 | | |
| 25 | + | |
22 | 26 | | |
23 | 27 | | |
24 | 28 | | |
| |||
28 | 32 | | |
29 | 33 | | |
30 | 34 | | |
| 35 | + | |
31 | 36 | | |
32 | 37 | | |
33 | 38 | | |
| |||
39 | 44 | | |
40 | 45 | | |
41 | 46 | | |
42 | | - | |
43 | | - | |
44 | 47 | | |
45 | 48 | | |
46 | 49 | | |
| |||
0 commit comments