Skip to content

Commit

Permalink
Keep platform
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd authored Nov 24, 2024
1 parent 2f9bee3 commit 177138c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ci/build-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ if [[ "${ARCH:-}" == "" ]]; then
exit 1
fi

case "$ARCH" in
x86_64)
platform=linux/amd64
;;
i686)
platform=linux/i386
;;
armhf)
platform=linux/arm/v7
;;
aarch64)
platform=linux/arm64/v8
;;
*)
echo "unknown architecture: $ARCH"
exit 2
;;
esac


# libassuan-static is supported only from 3.19 onwards
image=alpine:3.19

Expand Down

0 comments on commit 177138c

Please sign in to comment.