We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The migration test docs https://github.com/supabase/postgres/blob/develop/nix/docs/migration-tests.md
Have an example showing how to reference builds by git sha
OLD_GIT_VERSION=... NEW_GIT_VERSION=... nix run github:supabase/nix-postgres#migration-test \ $(nix build "github:supabase/nix-postgres/$OLD_GIT_VERSION#psql_15/bin") \ $(nix build "github:supabase/nix-postgres/$NEW_GIT_VERSION#psql_15/bin") \ pg_upgrade
that doesn't function as nix build "github:supabase/nix-postgres/$OLD_GIT_VERSION#psql_15/bin" does not return a nix path as it appears to expect
nix build "github:supabase/nix-postgres/$OLD_GIT_VERSION#psql_15/bin"
It does still work if you reference a major version directly
nix run github:supabase/nix-postgres#migration-test \ 15 15 pg_upgrade
The text was updated successfully, but these errors were encountered:
samrose
No branches or pull requests
The migration test docs
https://github.com/supabase/postgres/blob/develop/nix/docs/migration-tests.md
Have an example showing how to reference builds by git sha
that doesn't function as
nix build "github:supabase/nix-postgres/$OLD_GIT_VERSION#psql_15/bin"
does not return a nix path as it appears to expectIt does still work if you reference a major version directly
The text was updated successfully, but these errors were encountered: