8000 pg 15 and 16 packer/ansible/ghactions by samrose · Pull Request #1268 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

pg 15 and 16 packer/ansible/ghactions #1268

New issue

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

Merged
merged 51 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
f7bb3fe
fix: reformat ec2 cleanup commands (#1267)
samrose Oct 8, 2024
99f238e
feat: build and flake check of pg 16.3 with exts/wrappers
samrose Oct 7, 2024
ef848d4
pg_partman test 15/16 compat
olirice Oct 7, 2024
0011530
merge sql interface test
olirice Oct 7, 2024
7f041da
tests: build test and cache both versions
samrose Oct 7, 2024
f379f0c
chore: run checks individually
samrose Oct 7, 2024
708f4c3
feat: realease 15 and 16 to staging
samrose Oct 8, 2024
559f2ee
chore: update versions
samrose Oct 8, 2024
8661b1d
chore: make yq available
samrose Oct 8, 2024
9ad5b69
chore: run yq from nix
samrose Oct 8, 2024
86ba8d8
chore: more setup for staging AMI
samrose Oct 8, 2024
5aa2981
fix: yq usage
samrose Oct 8, 2024
50b4b67
chore: shell vars
samrose Oct 8, 2024
9237a0c
fix: When --init none is used, only users who can elevate to sudo pri…
samrose Oct 8, 2024
9a9b7f5
fix: no -i
samrose Oct 8, 2024
422f74b
fix: quote correction
samrose Oct 8, 2024
01109dc
fix: newline extra quotes
samrose Oct 8, 2024
7196838
fix: no need for pg major version on packer
samrose Oct 8, 2024
be8eb9d
fix: postgresql_major
samrose Oct 8, 2024
d5873dd
fix: ql
samrose Oct 8, 2024
a5a8228
fix: no ansible args in stage to invocation
samrose Oct 8, 2024
c23c2a6
fix: unique val
samrose Oct 8, 2024
c07119c
fix: adjustments to build scripts
samrose Oct 8, 2024
d0ef093
chore: env var handling
samrose Oct 8, 2024
a65394a
fix: bump to build
samrose Oct 8, 2024
a7cf05e
chore: set up more required vars
samrose Oct 8, 2024
4cd84cd
chore: bump var
samrose Oct 8, 2024
2866f1d
feat: pg 16 debug symbols
samrose Oct 8, 2024
e67dbfe
feat: matrix pg versions build on testinfra
samrose Oct 9, 2024
7a6f599
feat: matrix on Test Database
samrose Oct 9, 2024
8f50804
chore: running nix in the right context
samrose Oct 9, 2024
cf0d095
feat: just use existing Dockerfile + pg version
samrose Oct 9, 2024
3ac6ed5
chore: refer to var
samrose Oct 9, 2024
935b064
fix: read name without including quotes
samrose Oct 9, 2024
e086708
chore: try format function
samrose Oct 9, 2024
a2c6b12
fix: strip quotes from version number
samrose Oct 9, 2024
a01a927
chore: env var
samrose Oct 9, 2024
ce2ff2a
fix: pg client
samrose Oct 9, 2024
9784d42
fix
samrose Oct 9, 2024
c1c9601
fix: try to use psql from our own corresponding pkg
samrose Oct 9, 2024
642645b
fix: try psql from ppa
samrose Oct 9, 2024
2bf4ad4
fix: dbmate per pg version
samrose Oct 9, 2024
3286464
build dbmate and then install client
samrose Oct 9, 2024
4eecb87
fix: account for architecture
samrose Oct 9, 2024
fd816b8
chore: limit changes detection migrations/schema.sql
samrose Oct 10, 2024
26f02f0
missing docker compose call
samrose Oct 10, 2024
a694752
ore: drop tests while investigating
samrose Oct 10, 2024
4fa0e0f
test: try on pg15 only
samrose Oct 10, 2024
acf275d
chore: schema needs update
samrose Oct 10, 2024
29b11a3
chore: now run on all versions in matrix
samrose Oct 10, 2024
3003038
test: trying a version of schema per major pg version as there are ty…
samrose Oct 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests: build test and cache both versions
  • Loading branch information
samrose committed Oct 8, 2024
commit 7f041da60019a5759e827cef6f5b44540121efb5
2 changes: 2 additions & 0 deletions docker/nix/build_nix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ if [ -d "/workspace" ]; then
cd /workspace
fi
nix build .#psql_15/bin -o psql_15
nix build .#psql_16/bin -o psql_16
nix flake check -L
nix copy --to s3://nix-postgres-artifacts?secret-key=nix-secret-key ./psql_15
nix copy --to s3://nix-postgres-artifacts?secret-key=nix-secret-key ./psql_16
0