File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -145,19 +145,22 @@ jobs:
145145 fi
146146 mkdir -p pg build-pg install
147147 tar --extract --file postgresql.tar.bz2 --directory pg --strip-components 1
148+
148149 cd build-pg
150+
149151 ../pg/configure --prefix="$(readlink -f ../install)" --with-openssl \
150152 --without-readline --without-zlib --without-libxml ${{ matrix.pg_extra_args }}
151153 make -j $(getconf _NPROCESSORS_ONLN)
152154 for ext in ${{ matrix.pg_extensions }}; do
153155 make -j $(getconf _NPROCESSORS_ONLN) -C contrib/${ext}
154156 done
155157
156- make -C build-pg install
158+ make install
157159 for ext in ${{ matrix.pg_extensions }}; do
158- make -C build-pg/ contrib/${ext} install
160+ make -C contrib/${ext} install
159161 done
160- echo "$(readlink -f install/bin)" >> "${GITHUB_PATH}"
162+
163+ echo "$(readlink -f ../install/bin)" >> "${GITHUB_PATH}"
161164
162165 - name : Save PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }} Cache
163166 if : matrix.snapshot != 'snapshot' && steps.restore-postgresql-cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments