Skip to content

Commit 8167bbc

Browse files
committed
fix postgres 14.5 path in workflow
1 parent ea932cc commit 8167bbc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/buildimage.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
which pg_config
2727
ls -l $(which pg_config)
2828
PGXS=$(pg_config --pgxs)
29-
SERVER_LIB=$(pg_config --includedir)/postgresql/server
30-
INTERNAL_LIB=$(pg_config --includedir)/postgresql/internal
29+
SERVER_LIB=$(pg_config --includedir)/server
30+
INTERNAL_LIB=$(pg_config --includedir)/internal
3131
3232
echo $PGXS
3333
echo $SERVER_LIB
@@ -76,8 +76,8 @@ jobs:
7676
export PATH=$(pg_config --bindir):$PATH
7777
export PGXS=$(pg_config --pgxs)
7878
79-
export SERVER_LIB=$(pg_config --includedir)/postgresql/server
80-
export INTERNAL_LIB=$(pg_config --includedir)/postgresql/internal
79+
export SERVER_LIB=$(pg_config --includedir)/server
80+
export INTERNAL_LIB=$(pg_config --includedir)/internal
8181

8282
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
8383
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
@@ -102,8 +102,8 @@ jobs:
102102
export PATH=$(pg_config --bindir):$PATH
103103
export PGXS=$(pg_config --pgxs)
104104
105-
export SERVER_LIB=$(pg_config --includedir)/postgresql/server
106-
export INTERNAL_LIB=$(pg_config --includedir)/postgresql/internal
105+
export SERVER_LIB=$(pg_config --includedir)/server
106+
export INTERNAL_LIB=$(pg_config --includedir)/internal
107107

108108
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
109109
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
@@ -127,8 +127,8 @@ jobs:
127127
export PATH=$(pg_config --bindir):$PATH
128128
export PGXS=$(pg_config --pgxs)
129129
130-
export SERVER_LIB=$(pg_config --includedir)/postgresql/server
131-
export INTERNAL_LIB=$(pg_config --includedir)/postgresql/internal
130+
export SERVER_LIB=$(pg_config --includedir)/server
131+
export INTERNAL_LIB=$(pg_config --includedir)/internal
132132

133133
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
134134
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"

0 commit comments

Comments
 (0)