mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
b0b1f4183a
The recent commit 03faa4a8
has enabled those tests, however several
buildfarm members are complaining about their stability on Windows and
macOS. This will keep the buildfarm green, while investigating the
root problem.
Discussion: https://postgr.es/m/20181126003351.GE1776@paquier.xyz
26 lines
631 B
Makefile
26 lines
631 B
Makefile
# contrib/bloom/Makefile
|
|
|
|
MODULE_big = bloom
|
|
OBJS = blcost.o blinsert.o blscan.o blutils.o blvacuum.o blvalidate.o $(WIN32RES)
|
|
|
|
EXTENSION = bloom
|
|
DATA = bloom--1.0.sql
|
|
PGFILEDESC = "bloom access method - signature file based index"
|
|
|
|
REGRESS = bloom
|
|
|
|
# Disable TAP tests for this module for now, as these are unstable on several
|
|
# platforms, including recent Windows and macOS.
|
|
# TAP_TESTS = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/bloom
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|