Skip to content

Commit 900fb50

Browse files
authored
Merge pull request ceph#60255 from dmick/wip-fix-container-arch
container/build.sh: fix arm architecture tagging
2 parents d4b04b4 + 7e03ee7 commit 900fb50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

container/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ if [[ ${CI_CONTAINER} == "true" ]] ; then
136136
branch_repo_tag=$repopath/ceph:${BRANCH}
137137
sha1_repo_tag=$repopath/ceph:${CEPH_SHA1}
138138

139-
if [[ "${ARCH}" == "aarch64" ]] ; then
140-
branch_repo_tag=${branch_repo_tag}-aarch64
141-
sha1_repo_tag=${sha1_repo_tag}-aarch64
139+
if [[ "${ARCH}" == "arm64" ]] ; then
140+
branch_repo_tag=${branch_repo_tag}-arm64
141+
sha1_repo_tag=${sha1_repo_tag}-arm64
142142
fi
143143

144144
podman tag ${image_id} ${full_repo_tag}

0 commit comments

Comments
 (0)