File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ nix --version
5
5
if [ -d " /workspace" ]; then
6
6
cd /workspace
7
7
fi
8
+ SYSTEM=$( nix-instantiate --eval -E builtins.currentSystem | tr -d ' "' )
8
9
nix build .# psql_15/bin -o psql_15
9
10
nix flake check -L
10
11
nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./psql_15
12
+ if [ " $SYSTEM " = " aarch64-linux" ]; then
13
+ nix build .# postgresql_15_debug -o ./postgresql_15_debug
14
+ nix build .# postgresql_15_src -o ./postgresql_15_src
15
+ nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_15_debug-debug
16
+ nix copy --to s3://nix-postgres-artifacts? secret-key=nix-secret-key ./postgresql_15_src
17
+ fi
Original file line number Diff line number Diff line change 296
296
pg_regress = pg_regress ;
297
297
pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
298
298
postgresql_15 = pkgs . postgresql_15 ;
299
-
299
+ postgresql_15_debug = if pkgs . stdenv . isLinux then postgresql_15 . debug else null ;
300
300
postgresql_15_src = pkgs . stdenv . mkDerivation {
301
301
pname = "postgresql-15-src" ;
302
302
version = pkgs . postgresql_15 . version ;
You can’t perform that action at this time.
0 commit comments