Skip to content

Commit 90a190a

Browse files
committed
Use environment variables in the make installcheck step.
1 parent de09a3d commit 90a190a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,14 @@ jobs:
4848
pg_ctl start --pgdata ./data -o '-c shared_preload_libraries=neon'
4949
5050
- name: Minimal Check for Neon Extension
51-
run: |
52-
make PGHOST=/tmp PGDATA=./data PG_CONFIG=./neon/pg_install/v14/bin/pg_config -C ./neon/vendor/postgres-v14/contrib/neon installcheck
51+
env:
52+
PGHOST: /tmp
53+
PGDATA: ./data
54+
PG_CONFIG: ./neon/pg_install/v14/bin/pg_config
55+
run: |
56+
pwd
57+
ls -l ${PG_CONFIG}
58+
make -C ./neon/vendor/postgres-v14/contrib/neon installcheck
5359
5460
- name: Stop Postgres
5561
run: |

0 commit comments

Comments
 (0)