Replies: 1 comment
-
|
This is unfortunate that the architecture is sometimes called Linux calls it $ arch
OpenBSD.amd64The package name matches what people are used to for their operating system. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The 64bit linux artifact has the suffix
x86_64while the rest of the artifacts useamd64When using utils like docker buildx,
amd64is the architecture type forx86_64andamd64, and exposes that as theTARGETARCHenvironment variable.If we try to download the build artifact using something like:
URL="https://github.com/jedisct1/dnscrypt-proxy/releases/download/${VERSION}/dnscrypt-proxy-linux_${TARGETARCH}-${VERSION}.tar.gz"This will fail since TARGETARCH = amd64 and
dnscrypt-proxy-linux_amd64-2.1.1.tar.gzdoes not exist.Beta Was this translation helpful? Give feedback.
All reactions