Replies: 1 comment
-
This is unfortunate that the architecture is sometimes called Linux calls it $ arch
OpenBSD.amd64 The 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_64
while the rest of the artifacts useamd64
When using utils like docker buildx,
amd64
is the architecture type forx86_64
andamd64
, and exposes that as theTARGETARCH
environment 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.gz
does not exist.Beta Was this translation helpful? Give feedback.
All reactions