File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ postgres_major:
8
8
9
9
# Full version strings for each major version
10
10
postgres_release :
11
- postgresorioledb-17 : " 17.0.1.049 -orioledb"
12
- postgres15 : " 15.8.1.056 "
11
+ postgresorioledb-17 : " 17.0.1.050 -orioledb-walg "
12
+ postgres15 : " 15.8.1.057-walg "
13
13
14
14
# Non Postgres Extensions
15
15
pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change @@ -10,12 +10,14 @@ SYSTEM=$(nix-instantiate --eval -E builtins.currentSystem | tr -d '"')
10
10
11
11
nix build .# checks.$SYSTEM.psql_15 -L --no-link
12
12
nix build .# checks.$SYSTEM.psql_orioledb-17 -L --no-link
13
- nix build .# psql_15/bin -o psql_15
13
+ nix build .# psql_15/bin -o psql_15 -L
14
14
15
- nix build .# psql_orioledb-17/bin -o psql_orioledb_17
16
- nix build .# wal-g -o wal-g
15
+ nix build .# psql_orioledb-17/bin -o psql_orioledb_17 -L
16
+ nix build .# wal-g -o wal-g -L
17
+ nix build .# wal-g-3 -o wal-g-3 -L
17
18
# Copy to S3
18
19
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./wal-g
20
+ nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./wal-g-3
19
21
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_15
20
22
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_orioledb_17
21
23
if [ " $SYSTEM " = " aarch64-linux" ]; then
@@ -27,5 +29,4 @@ if [ "$SYSTEM" = "aarch64-linux" ]; then
27
29
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_15_src
28
30
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_orioledb-17_debug-debug
29
31
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_orioledb-17_src
30
- nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./wal-g
31
32
fi
Original file line number Diff line number Diff line change 87
87
sfcgal = pkgs . callPackage ./nix/ext/sfcgal/sfcgal.nix { } ;
88
88
supabase-groonga = pkgs . callPackage ./nix/supabase-groonga.nix { } ;
89
89
mecab-naist-jdic = pkgs . callPackage ./nix/ext/mecab-naist-jdic/default.nix { } ;
90
- wal-g = pkgs . callPackage ./nix/wal-g.nix { } ;
90
+ inherit ( pkgs . callPackage ./nix/wal-g.nix { } ) wal-g wal-g-3 ;
91
91
# Our list of PostgreSQL extensions which come from upstream Nixpkgs.
92
92
# These are maintained upstream and can easily be used here just by
93
93
# listing their name. Anytime the version of nixpkgs is upgraded, these
407
407
psql_15 = postgresVersions . psql_15 ;
408
408
psql_orioledb-17 = postgresVersions . psql_orioledb-17 ;
409
409
wal-g = wal-g ;
410
+ wal-g-3 = wal-g-3 ;
410
411
sfcgal = sfcgal ;
411
412
pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
412
413
inherit postgresql_15 postgresql_orioledb-17 ;
You can’t perform that action at this time.
0 commit comments