feat: source local .envrc if it exists (#6715)
Some checks are pending
Nix / Required Checks: Nix (push) Blocked by required conditions
Nix / check-zig-cache-hash (push) Waiting to run
Test / Required Checks: Test (push) Blocked by required conditions
Test / build-bench (push) Blocked by required conditions
Test / build-linux (namespace-profile-ghostty-md) (push) Blocked by required conditions
Test / build-linux (namespace-profile-ghostty-md-arm64) (push) Blocked by required conditions
Test / build-linux-libghostty (push) Blocked by required conditions
Test / build-nix (namespace-profile-ghostty-md) (push) Blocked by required conditions
Test / build-nix (namespace-profile-ghostty-md-arm64) (push) Blocked by required conditions
Test / build-macos (push) Blocked by required conditions
Test / build-macos-matrix (push) Blocked by required conditions
Test / build-snap (namespace-profile-ghostty-snap) (push) Blocked by required conditions
Test / build-snap (namespace-profile-ghostty-snap-arm64) (push) Blocked by required conditions
Test / build-windows (push) Blocked by required conditions
Test / build-windows-cross (namespace-profile-ghostty-md, x86-windows-gnu) (push) Blocked by required conditions
Test / build-windows-cross (namespace-profile-ghostty-md, x86_64-windows-gnu) (push) Blocked by required conditions
Test / test (push) Waiting to run
Test / GTK x11=${{ matrix.x11 }} wayland=${{ matrix.wayland }} (false, false) (push) Blocked by required conditions
Test / GTK x11=${{ matrix.x11 }} wayland=${{ matrix.wayland }} (false, true) (push) Blocked by required conditions
Test / GTK x11=${{ matrix.x11 }} wayland=${{ matrix.wayland }} (true, false) (push) Blocked by required conditions
Test / GTK x11=${{ matrix.x11 }} wayland=${{ matrix.wayland }} (true, true) (push) Blocked by required conditions
Test / Build -Dsentry=${{ matrix.sentry }} (false) (push) Blocked by required conditions
Test / Build -Dsentry=${{ matrix.sentry }} (true) (push) Blocked by required conditions
Test / test-macos (push) Blocked by required conditions
Test / prettier (push) Waiting to run
Test / alejandra (push) Waiting to run
Test / typos (push) Waiting to run
Test / translations (push) Waiting to run
Test / Test pkg/${{ matrix.pkg }} (wuffs) (push) Blocked by required conditions
Test / Test build on Debian 12 (push) Blocked by required conditions

This commit is contained in:
Leah Amelia Chen 2025-03-14 12:14:19 +01:00 committed by GitHub
commit 4ab3754a59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
.envrc
View File

@ -4,3 +4,6 @@ if has nix; then
watch_file nix/{devShell,package,wraptest}.nix
use flake
fi
# Source an `.envrc.local` if it exists. You can add your custom changes there.
[[ -f .envrc.local ]] && source_env .envrc.local