ARM builds for abra #312
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Did this for another project, something like
360f77b259/.goreleaser.yaml (L25-L30)
.This is what currently happens when trying to install abra on ARM (this is using Linux, as Rosetta kicks on on Mac and abra runs fine on M1):
$ curl https://install.abra.coopcloud.tech | bash
downloading 0.3.0-alpha linux_aarch64 binary release for abra...
checking if checksums match...
ERROR: the checksum of downloaded file doesn't match the checksum in release! Either the file was corrupted during download or the file has been changed during transport
expected checksum:
checksum of downloaded file: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
abra was NOT installed/upgraded
$ curl https://install.abra.coopcloud.tech | bash -s -- --rc
downloading 0.4.0-alpha-rc7 linux_aarch64 binary release for abra...
checking if checksums match...
ERROR: the checksum of downloaded file doesn't match the checksum in release! Either the file was corrupted during download or the file has been changed during transport
expected checksum:
checksum of downloaded file: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
abra was NOT installed/upgraded
OK with
c71efb46ba
I see thatgoreleaser release --snapshot --rm-dist
reports:So the builds are there. Once the new release is out we can see if
c71efb46ba/scripts/installer/installer
can handle it & if not re-work & re-deploy that script post-release to make it work. Nearly there.Available for testing on https://git.coopcloud.tech/coop-cloud/abra/releases/tag/0.4.0-alpha as downloads. The installer might work 🤷
aarch64
andarm64
are different names for the same architecture. We should change the installer so that it pulls the arm64 version when device reports aarch64fixed in
c214937e4a
I'll wait till it builds, run the installer and close the issue if it worksbonus: 32 bit arm support also added in
11d78234b2
closing, please reopen if you encounter further problems