Release tar.gz file is not available and "go build" possibly not work on armhf
Hello,
on 6.1.28+ armv7l GNU/Linux
$ cd /mnt/tmpfs;git clone https://git.torproject.org/pluggable-transports/snowflake.git && cd snowflake/proxy;go build
Cloning into 'snowflake'...
warning: redirecting to https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git/
remote: Enumerating objects: 6098, done.
remote: Counting objects: 100% (199/199), done.
remote: Compressing objects: 100% (114/114), done.
remote: Total 6098 (delta 83), reused 194 (delta 83), pack-reused 5899
Receiving objects: 100% (6098/6098), 2.64 MiB | 3.70 MiB/s, done.
Resolving deltas: 100% (4117/4117), done.
go: downloading github.com/prometheus/client_golang v1.16.0
...
go: downloading gopkg.in/yaml.v3 v3.0.1
/home/user/go/pkg/mod/golang.org/x/crypto@v0.10.0/curve25519/curve25519_go120.go:9:8: package crypto/ecdh is not in GOROOT (/usr/lib/go-1.15/src/crypto/ecdh)
user@host /mnt/tmpfs/snowflake/proxy $ ls
lib main.go README.md
And when i copy latest release .tar.gz file link and try to download it: $ cd /mnt/tmpfs/ && wget https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/jobs/295269/artifacts/file/snowflake-.tar.gz
...
HTTP request sent, awaiting response... 404 Not Found
Can you fix that 404 file please, or if you have idea how to allow build on mine mentioned system?
In the meantime, i have tried to "go built" on a different (also Debian based - 5.10.0-20-amd64 x86_64 GNU/Linux) computer and copied resulting "proxy" directory to 6.1.28+ armv7l GNU/Linux computer: scp -r ../proxy/ user@192.168.1.10:/home/user/snowflake/
Yet it does not launch it: /home/user/snowflake/proxy/proxy: cannot execute binary file: Exec format error
Building using "GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build" mentioned in my previous issue and copying to othr computer also end in "Exec format error". On source, it launch ./proxy OK.