Skip to content

Commit

Permalink
build squid release by default
Browse files Browse the repository at this point in the history
These changes will make the project build Ceph Squid by default in
addition to quincy, reef and main

Signed-off-by: Guillaume Abrioux <[email protected]>
  • Loading branch information
guits committed Jul 12, 2024
1 parent 376037e commit c5aaba5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ jobs:
os: [9]
ceph_release: [quincy, reef, squid, main]
exclude:
- os: 9
ceph_release: squid
- os: 9
ceph_release: quincy
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
FLAVORS ?= \
quincy,centos,9 \
reef,centos,9 \
squid,centos,9 \
main,centos,9

TAG_REGISTRY ?= ceph
Expand Down
2 changes: 1 addition & 1 deletion contrib/build-push-ceph-container-imgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ OSD_FLAVOR=${OSD_FLAVOR:=default}

if [ -z "$CEPH_RELEASES" ]; then
# NEVER change 'main' position in the array, this will break the 'latest' tag
CEPH_RELEASES=(main quincy reef)
CEPH_RELEASES=(main quincy reef squid)
fi

HOST_ARCH=$(uname -m)
Expand Down
4 changes: 2 additions & 2 deletions contrib/ceph-build-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ trap 'exit $?' ERR
# These build scripts don't need to have the aarch64 part of the distro specified
# I.e., specifying 'luminous,centos-arm64,7' is not necessary for aarch64 builds; these scripts
# will do the right build. See configurable CENTOS_AARCH64_FLAVOR_DISTRO below
X86_64_FLAVORS_TO_BUILD="${X86_64_FLAVORS_TO_BUILD:-pacific,centos,8 quincy,centos,8 reef,centos,8}"
AARCH64_FLAVORS_TO_BUILD="${AARCH64_FLAVORS_TO_BUILD:-pacific,centos,8 quincy,centos,8 reef,centos,8}"
X86_64_FLAVORS_TO_BUILD="${X86_64_FLAVORS_TO_BUILD:- quincy,centos,9 reef,centos,9 squid,centos,9}"
AARCH64_FLAVORS_TO_BUILD="${AARCH64_FLAVORS_TO_BUILD:- quincy,centos,9 reef,centos,9 squid,centos,9}"

# Allow running this script with the env var ARCH='aarch64' to build arm images
# ARCH='x86_64'
Expand Down

0 comments on commit c5aaba5

Please sign in to comment.