Skip to content

Commit 46225a1

Browse files
committed
WIP fixing citus split
WIP always include citus makefile when testing citus
1 parent fe8f88f commit 46225a1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ PGVERSIONS = 11 12 13 14 15 16
99
# Default version:
1010
PGVERSION ?= $(lastword $(PGVERSIONS))
1111

12+
# XXXX This should be in Makefile.citus only
13+
# but requires to clean up dockerfile and make targets related to citus first.
14+
# Default Citus Data version
15+
CITUSTAG ?= v12.1.0
16+
1217
# TODO should be abs_top_dir ?
1318
TOP := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
1419

@@ -254,6 +259,10 @@ DOCKER_RUN_OPTS = --privileged --rm
254259
#
255260
# Include Citus only for testing purpose
256261
#
262+
ifeq ($(TEST),citus)
263+
CITUS=1
264+
endif
265+
257266
ifeq ($(CITUS),1)
258267
include Makefile.citus
259268
endif

0 commit comments

Comments
 (0)