We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8f88f commit 46225a1Copy full SHA for 46225a1
Makefile
@@ -9,6 +9,11 @@ PGVERSIONS = 11 12 13 14 15 16
9
# Default version:
10
PGVERSION ?= $(lastword $(PGVERSIONS))
11
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
+
17
# TODO should be abs_top_dir ?
18
TOP := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
19
@@ -254,6 +259,10 @@ DOCKER_RUN_OPTS = --privileged --rm
254
259
#
255
260
# Include Citus only for testing purpose
256
261
262
+ifeq ($(TEST),citus)
263
+ CITUS=1
264
+endif
265
257
266
ifeq ($(CITUS),1)
258
267
include Makefile.citus
268
endif
0 commit comments