Skip to content

Commit 38a767d

Browse files
committed
forgot cd
1 parent f53c8b1 commit 38a767d

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/linux-build-and-test.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)