nixpkgs/pkgs/applications/blockchains/solana-validator/update.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.2 KiB
Bash
Raw Normal View History

2022-09-04 18:28:23 +00:00
#!/usr/bin/env nix-shell
#! nix-shell -i oil -p jq moreutils nix-prefetch-github gnused
2022-09-04 18:28:23 +00:00
# TODO set to `verbose` or `extdebug` once implemented in oil
shopt --set xtrace
# we need failures inside of command subs to get the correct cargoHash
2022-09-04 18:28:23 +00:00
shopt --unset inherit_errexit
const directory = $(dirname $0 | xargs realpath)
const owner = "solana-labs"
const repo = "solana"
const latest_rev = $(curl -q https://api.github.com/repos/${owner}/${repo}/releases/latest | \
jq -r '.tag_name')
const latest_version = $(echo ${latest_rev#v})
2022-09-04 18:28:23 +00:00
const current_version = $(jq -r '.version' $directory/pin.json)
if ("$latest_version" === "$current_version") {
echo "solana is already up-to-date"
return 0
} else {
const tarball_meta = $(nix-prefetch-github $owner $repo --rev "$latest_rev")
const tarball_hash = $(echo $tarball_meta | jq -r '.hash')
2022-09-04 18:28:23 +00:00
jq ".version = \"$latest_version\" | \
.\"hash\" = \"$tarball_hash\" | \
.\"cargoHash\" = \"\"" $directory/pin.json | sponge $directory/pin.json
2022-09-04 18:28:23 +00:00
const new_cargo_hash = $(nix-build -A solana-validator 2>&1 | \
2022-09-04 18:28:23 +00:00
tail -n 2 | \
head -n 1 | \
sed 's/\s*got:\s*//')
2022-09-04 18:28:23 +00:00
jq ".cargoHash = \"$new_cargo_hash\"" $directory/pin.json | sponge $directory/pin.json
2022-09-04 18:28:23 +00:00
}