From b4ef23bd6a0936f9e0fe2d0a5834d3066d540a4e Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Fri, 1 Jul 2022 12:30:41 +0530 Subject: [PATCH] Makefile: Define pre-release tags for quincy Signed-off-by: Anoop C S --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4336584..03ce11f 100644 --- a/Makefile +++ b/Makefile @@ -29,13 +29,14 @@ endif ifeq ($(CEPH_VERSION),quincy) CEPH_TAG := v17 endif -# ci- indicates we want to consume pre-release versions of ceph from +# pre- indicates we want to consume pre-release versions of ceph from # the ceph ci. This way we can start testing on ceph versions before they hit # quay.io/ceph/ceph -ifeq ($(CEPH_VERSION),ci-quincy) +ifeq ($(CEPH_VERSION),pre-quincy) CEPH_TAG := quincy CEPH_IMG := quay.ceph.io/ceph-ci/ceph GO_CEPH_VERSION := quincy + BUILD_TAGS := quincy,ceph_pre_quincy endif GO_CMD:=go