File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 88nix build .# psql_15/bin -o psql_15
99nix flake check -L
1010nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_15
11+ if [ " $SYSTEM " = " aarch64-linux" ]; then
12+ nix build .# postgresql_15_debug -o postgresql_15_debug
13+ nix build .# postgresql_15_src -o postgresql_15_src
14+ nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key copy ./postgresql_15_debug
15+ nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key copy ./postgresql_15_src
16+ fi
Original file line number Diff line number Diff line change 296296 pg_regress = pg_regress ;
297297 pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
298298 postgresql_15 = pkgs . postgresql_15 ;
299-
299+ postgresql_15_debug = if pkgs . stdenv . isLinux then postgresql_15 . debug else null ;
300300 postgresql_15_src = pkgs . stdenv . mkDerivation {
301301 pname = "postgresql-15-src" ;
302302 version = pkgs . postgresql_15 . version ;
You can’t perform that action at this time.
0 commit comments