Skip to content

Commit

Permalink
makefile: add ceph reef versions
Browse files Browse the repository at this point in the history
Add CEPH_VERSION values for reef and pre-reef. This will allow building
and testing with ceph reef images.

Signed-off-by: John Mulligan <[email protected]>
  • Loading branch information
phlogistonjohn authored and mergify[bot] committed Aug 2, 2023
1 parent db97336 commit 90d142b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ endif
ifeq ($(CEPH_VERSION),quincy)
CEPH_TAG := v17
endif
ifeq ($(CEPH_VERSION),reef)
CEPH_TAG := v18
endif
# pre-<codename> 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
Expand All @@ -44,6 +47,12 @@ ifeq ($(CEPH_VERSION),pre-pacific)
GO_CEPH_VERSION := pacific
BUILD_TAGS := pacific,ceph_pre_pacific
endif
ifeq ($(CEPH_VERSION),pre-reef)
CEPH_TAG := reef
CEPH_IMG := quay.ceph.io/ceph-ci/ceph
GO_CEPH_VERSION := reef
BUILD_TAGS := reef,ceph_pre_reef
endif
ifeq ($(CEPH_VERSION),main)
CEPH_TAG := main
CEPH_IMG := quay.ceph.io/ceph-ci/ceph
Expand Down

0 comments on commit 90d142b

Please sign in to comment.