You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(sccache): enable sccache for pgrx builds with per-PG-version cache keys
- Add sccache to buildPgrxExtension.nix nativeBuildInputs
- Enable sccache conditionally when /nix/var/cache/sccache is available
- Configure Nix with auto-allocate-uids and max-jobs=1 for consistent UID mapping
- Add cache_key field to github-matrix output for stickydisk grouping
- Fix postgresql_version extraction for packages with extra path levels
- Use per-postgres-version cache keys to reduce stickydisk conflicts
- Chown cache to UID 872415232 (auto-allocate-uids base) before builds
"""Check if the package is a postgresql extension package."""
216
-
attrs=pkg["attr"].split(".")
217
-
returnattrs[-2] =="exts"
217
+
return".exts."inpkg["attr"]
218
218
219
219
220
220
# thank you buildbot-nix https://github.com/nix-community/buildbot-nix/blob/985d069a2a45cf4a571a4346107671adc2bd2a16/buildbot_nix/buildbot_nix/build_trigger.py#L297
0 commit comments