mirror of https://github.com/citusdata/citus.git
Add rpath check in test Makefile
parent
ef2221affa
commit
aaceada367
4
Makefile
4
Makefile
|
@ -26,8 +26,6 @@ install-columnar:
|
|||
$(MAKE) -C src/backend/columnar install
|
||||
install-extension: extension install-columnar
|
||||
$(MAKE) -C src/backend/distributed/ install
|
||||
ldd /usr/lib/postgresql/13/lib/citus.so
|
||||
readelf -d /usr/lib/postgresql/13/lib/citus.so
|
||||
install-headers: extension
|
||||
$(MKDIR_P) '$(DESTDIR)$(includedir_server)/distributed/'
|
||||
# generated headers are located in the build directory
|
||||
|
@ -47,8 +45,6 @@ install-downgrades:
|
|||
$(MAKE) -C src/backend/distributed/ install-downgrades
|
||||
install-all: install-headers
|
||||
$(MAKE) -C src/backend/distributed/ install-all
|
||||
ldd /usr/lib/postgresql/13/lib/citus.so
|
||||
readelf -d /usr/lib/postgresql/13/lib/citus.so
|
||||
clean: clean-extension
|
||||
|
||||
# apply or check style
|
||||
|
|
|
@ -192,6 +192,8 @@ check-operations: all
|
|||
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/operations_schedule $(EXTRA_TESTS)
|
||||
|
||||
check-columnar:
|
||||
ldd /usr/lib/postgresql/13/lib/citus.so
|
||||
readelf -d /usr/lib/postgresql/13/lib/citus.so
|
||||
$(pg_regress_multi_check) --load-extension=citus \
|
||||
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/columnar_schedule $(EXTRA_TESTS)
|
||||
|
||||
|
|
Loading…
Reference in New Issue