|
|
|
|
|
by ttoinou
1879 days ago
|
|
For our small software company, notarization took at least 40 hours of additional work, and slows down releases. Anyone knows if "stapling" the distributed bundles files (.app .pkg executable files etc.) is useful in any way ? |
|
My CI pipeline is build -> test -> deploy. The Mac "build" job uploads the app for notarization as a side effect. There is an additional "mac archive" job during the test stage. This job runs general tests on the DMG (checks code signing is valid, makes sure I'm not depending on system libraries), then waits for notarization to finish and staples the DMG. By the time I'm done mounting and checking the DMG, notarization is almost done anyway.
My typical release time right now (from git push to having a fresh app available to install for windows/linux/mac) is 7 minutes. I think I could get it down to around 3 minutes with optimizations.
My primary bottleneck right now is building / xz-compressing a windows installer (which means my windows tests finish last).