-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1049 from nervosnetwork/release-checksums-script
Ruby script to download a release binaries and calculate SHA256 checksums
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require "open-uri" | ||
require "digest" | ||
|
||
tag = ARGV[0] | ||
puts "Generating release checksums for #{tag}, this could take a while..." | ||
|
||
windows_exe = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-win-installer.exe" | ||
macos_zip = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-mac.zip" | ||
macos_dmg = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-mac.dmg" | ||
linux_appimage = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-linux-x86_64.AppImage" | ||
|
||
def get_sha256_checksum(url) | ||
content = open(url).read | ||
Digest::SHA256.hexdigest(content) | ||
end | ||
|
||
windows_exe_sha256, macos_zip_sha256, macos_dmg_sha256, linux_appimage_sha256 = [windows_exe, macos_zip, macos_dmg, linux_appimage].map do |url| | ||
Thread.new { get_sha256_checksum(url) } | ||
end.map(&:value) | ||
|
||
checksums = %( | ||
### Downloads | ||
OS | Arch | Package | SHA256 Checksum | ||
-- | -- | -- | -- | ||
Windows | x64 | [exe](#{windows_exe}) | <code>#{windows_exe_sha256}</code> | ||
macOS | x64 | [zip](#{macos_zip}) | <code>#{macos_zip_sha256}</code> | ||
macOS | x64 | [DMG](#{macos_dmg}) | <code>#{macos_dmg_sha256}</code> | ||
Linux | x64 | [AppImage](#{linux_appimage}) | <code>#{linux_appimage_sha256}</code> | ||
) | ||
|
||
puts checksums |