mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Disable 32bit arm
This commit is contained in:
parent
c8702c4fa6
commit
d025fbff21
2 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ git push
|
||||||
|
|
||||||
# Build for arm64v8, arm32v7, and amd64
|
# Build for arm64v8, arm32v7, and amd64
|
||||||
build_image $new_tag arm64v8
|
build_image $new_tag arm64v8
|
||||||
build_image $new_tag arm32v7
|
# build_image $new_tag arm32v7
|
||||||
build_image $new_tag amd64
|
build_image $new_tag amd64
|
||||||
|
|
||||||
# Build for other archs
|
# Build for other archs
|
||||||
|
|
|
@ -25,14 +25,14 @@ set -xe
|
||||||
|
|
||||||
docker manifest create asonix/pictrs:$new_tag \
|
docker manifest create asonix/pictrs:$new_tag \
|
||||||
-a asonix/pictrs:arm64v8-$new_tag \
|
-a asonix/pictrs:arm64v8-$new_tag \
|
||||||
-a asonix/pictrs:arm32v7-$new_tag \
|
|
||||||
-a asonix/pictrs:amd64-$new_tag
|
-a asonix/pictrs:amd64-$new_tag
|
||||||
|
# -a asonix/pictrs:arm32v7-$new_tag \
|
||||||
|
|
||||||
docker manifest annotate asonix/pictrs:$new_tag \
|
docker manifest annotate asonix/pictrs:$new_tag \
|
||||||
asonix/pictrs:arm64v8-$new_tag --os linux --arch arm64 --variant v8
|
asonix/pictrs:arm64v8-$new_tag --os linux --arch arm64 --variant v8
|
||||||
|
|
||||||
docker manifest annotate asonix/pictrs:$new_tag \
|
# docker manifest annotate asonix/pictrs:$new_tag \
|
||||||
asonix/pictrs:arm32v7-$new_tag --os linux --arch arm --variant v7
|
# asonix/pictrs:arm32v7-$new_tag --os linux --arch arm --variant v7
|
||||||
|
|
||||||
docker manifest annotate asonix/pictrs:$new_tag \
|
docker manifest annotate asonix/pictrs:$new_tag \
|
||||||
asonix/pictrs:amd64-$new_tag --os linux --arch amd64
|
asonix/pictrs:amd64-$new_tag --os linux --arch amd64
|
||||||
|
|
Loading…
Reference in a new issue