-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: prebuilt binaries with Ledger support (#2872)
Closes #2729 This PR removes [checksum signing](https://goreleaser.com/customization/sign/) because goreleaser/goreleaser-cross#58. ## Testing The assets on https://github.com/rootulp/celestia-app/releases/tag/v1.0.0-rc52 OS | Platform | Ledger support --- | --- | --- Darwin | arm64 | ✅ Darwin | amd64 | ✅ Linux | arm64 | Linux | amd64 | ✅
- Loading branch information
Showing
7 changed files
with
100 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,5 @@ run.sh | |
testing/e2e/networks/*/ | ||
square/testdata | ||
**/*.html | ||
.release-env | ||
**/*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,9 +43,9 @@ node | | | | | |
make install | ||
``` | ||
|
||
### Pre-built binary | ||
### Prebuilt binary | ||
|
||
If you'd rather not install from source, you can download a pre-built binary from the [releases](https://github.com/celestiaorg/celestia-app/releases) page. | ||
If you'd rather not install from source, you can download a prebuilt binary from the [releases](https://github.com/celestiaorg/celestia-app/releases) page. | ||
1. Navigate to the latest release on <https://github.com/celestiaorg/celestia-app/releases>. | ||
1. Download the binary for your platform (e.g. `celestia-app_Linux_x86_64.tar.gz`) from the **Assets** section. Tip: if you're not sure what platform you're on, you can run `uname -a` and look for the operating system (e.g. `Linux`, `Darwin`) and architecture (e.g. `x86_64`, `arm64`). | ||
|
@@ -61,16 +61,7 @@ If you'd rather not install from source, you can download a pre-built binary fro | |
./celestia-appd --help | ||
``` | ||
<details> | ||
<summary> | ||
Optional: Verify the pre-built binary checksums and signatures | ||
</summary> | ||
If you use a pre-built binary, you may also want to verify the checksums and signatures. | ||
1. Navigate to the latest release on <https://github.com/celestiaorg/celestia-app/releases>. | ||
1. Download `checksums.txt`, `checksums.txt.sig`, and the binary for your platform (e.g. `celestia-app_Linux_x86_64.tar.gz`) from the **Assets** section. Tip: if you're not sure what platform you're on, you can run `uname -a` and look for the operating system (e.g. `Linux`, `Darwin`) and architecture (e.g. `x86_64`, `arm64`). | ||
1. Verify the checksums | ||
1. [Optional] verify the prebuilt binary checksum. Download `checksums.txt` and then verify the checksum: | ||
```shell | ||
sha256sum --ignore-missing --check checksums.txt | ||
|
@@ -82,26 +73,6 @@ If you use a pre-built binary, you may also want to verify the checksums and sig | |
celestia-app_Linux_x86_64.tar.gz: OK | ||
``` | ||
1. Download the [verify-signature.sh](./scripts/signing/verify-signature.sh) script. | ||
1. Verify the signature via the [verify-signature.sh](./scripts/signing/verify-signature.sh) script | ||
```shell | ||
./verify-signature.sh checksums.txt.sig checksums.txt | ||
``` | ||
You should see output like this: | ||
```shell | ||
gpg: Signature made Tue Oct 10 13:25:06 2023 UTC | ||
gpg: using EDDSA key BF02F32CC36864560B90B764D469F859693DC3FA | ||
gpg: Good signature from "celestia-app-maintainers <[email protected]>" [unknown] | ||
gpg: WARNING: This key is not certified with a trusted signature! | ||
gpg: There is no indication that the signature belongs to the owner. | ||
Primary key fingerprint: BF02 F32C C368 6456 0B90 B764 D469 F859 693D C3FA | ||
``` | ||
</details> | ||
### Ledger Support | ||
Ledger is not supported on Windows and OpenBSD. | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.