-
Notifications
You must be signed in to change notification settings - Fork 290
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 | ✅ (cherry picked from commit 0e94856) # Conflicts: # .github/workflows/ci-release.yml # README.md # scripts/signing/verify-signature.sh
- Loading branch information
1 parent
2dbfabf
commit ba01a7e
Showing
6 changed files
with
109 additions
and
59 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 |
---|---|---|
|
@@ -46,9 +46,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`). | ||
|
@@ -64,13 +64,17 @@ If you'd rather not install from source, you can download a pre-built binary fro | |
./celestia-appd --help | ||
``` | ||
<<<<<<< HEAD | ||
#### Optional: Verify the pre-built binary checksums and signatures | ||
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: | ||
>>>>>>> 0e94856 (feat: prebuilt binaries with Ledger support (#2872)) | ||
```shell | ||
sha256sum --ignore-missing --check checksums.txt | ||
|
@@ -82,6 +86,7 @@ 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 | ||
``` | ||
<<<<<<< HEAD | ||
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 | ||
|
@@ -97,6 +102,8 @@ If you use a pre-built binary, you may also want to verify the checksums and sig | |
gpg: Good signature from "celestia-app-maintainers <[email protected]>" [ultimate] | ||
``` | ||
======= | ||
>>>>>>> 0e94856 (feat: prebuilt binaries with Ledger support (#2872)) | ||
### Ledger Support | ||
Ledger is not supported on Windows and OpenBSD. | ||
|
This file was deleted.
Oops, something went wrong.