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:
88
99# Full version strings for each major version
1010postgres_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 "
1313
1414# Non Postgres Extensions
1515pgbouncer_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 '"')
1010
1111nix build .# checks.$SYSTEM.psql_15 -L --no-link
1212nix 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
1414
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
1718# Copy to S3
1819nix 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
1921nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_15
2022nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_orioledb_17
2123if [ " $SYSTEM " = " aarch64-linux" ]; then
@@ -27,5 +29,4 @@ if [ "$SYSTEM" = "aarch64-linux" ]; then
2729 nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_15_src
2830 nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_orioledb-17_debug-debug
2931 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
3132fi
Original file line number Diff line number Diff line change 8787 sfcgal = pkgs . callPackage ./nix/ext/sfcgal/sfcgal.nix { } ;
8888 supabase-groonga = pkgs . callPackage ./nix/supabase-groonga.nix { } ;
8989 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 ;
9191 # Our list of PostgreSQL extensions which come from upstream Nixpkgs.
9292 # These are maintained upstream and can easily be used here just by
9393 # listing their name. Anytime the version of nixpkgs is upgraded, these
407407 psql_15 = postgresVersions . psql_15 ;
408408 psql_orioledb-17 = postgresVersions . psql_orioledb-17 ;
409409 wal-g = wal-g ;
410+ wal-g-3 = wal-g-3 ;
410411 sfcgal = sfcgal ;
411412 pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
412413 inherit postgresql_15 postgresql_orioledb-17 ;
You can’t perform that action at this time.
0 commit comments