mirror of
https://github.com/ceph/go-ceph
synced 2025-01-29 17:42:49 +00:00
makefile: add ceph reef versions
Add CEPH_VERSION values for reef and pre-reef. This will allow building and testing with ceph reef images. Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
db97336f62
commit
90d142bcb1
9
Makefile
9
Makefile
@ -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
|
||||
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user