We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de09a3d commit 90a190aCopy full SHA for 90a190a
.github/workflows/build.yml
@@ -48,8 +48,14 @@ jobs:
48
pg_ctl start --pgdata ./data -o '-c shared_preload_libraries=neon'
49
50
- 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
+ env:
+ 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
59
60
- name: Stop Postgres
61
run: |
0 commit comments