mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
* ci: centralize build-image SHA and pre-seed node-gyp headers - Add .github/actions/build-image-sha as the single source of truth for the ghcr.io/electron/build (and arch-tagged electron/test) image SHA, with an optional override input for workflow_dispatch. - Refactor build.yml, apply-patches.yml, build-git-cache.yml, clean-src-cache.yml, clean-orphaned-cache-uploads.yml, and the three publish workflows to resolve the SHA via a small ubuntu-slim setup job instead of hardcoding it in each file. - Bump the image to daad061f (electron/build-images#68, which pre-warms the node-gyp header cache in the Linux images). - Run the build.yml setup job on ubuntu-slim instead of ubuntu-latest. - In install-dependencies (and the inline yarn installs in pipeline-electron-lint and generate-types), link deps with --mode=skip-build first, run `node-gyp install` with up to 3 retries (5s backoff) to populate the header cache, then run the build phase. This avoids the parallel-download race that intermittently fails the first native-addon configure with an empty common.gypi on cold macOS/Windows runners. * ci: skip node-gyp header pre-seed on Linux * ci: invoke node-gyp via its JS entrypoint for Windows compat