mempool: 2.5.0 -> 3.2.1

This commit is contained in:
Erik Arvstedt 2025-06-01 23:03:32 +02:00
parent 9a044fbfed
commit 81112a0553
No known key found for this signature in database
GPG key ID: 33312B944DD97846
9 changed files with 119 additions and 20 deletions

View file

@ -5,7 +5,7 @@ set -euo pipefail
# Use this to start a debug shell at the location of this statement
# . "${BASH_SOURCE[0]%/*}/../../helper/start-bash-session.sh"
version=2.5.0
version=3.2.1
# You can also specify a rev instead:
# rev=57eddac7f0b99b4fe84d91c0f4a50a4f7ccfe55f
owner=mempool
@ -60,12 +60,19 @@ updateFrontendAssets() {
../../helper/update-fixed-output-derivation.sh ./default.nix mempool-frontend.assets "frontendAssets"
}
updateRustGbtCargoDeps() {
echo
echo "Fetching rust-gbt cargo deps"
../../helper/update-fixed-output-derivation.sh ./default.nix mempool-rust-gbt.cargoDeps "fetchCargoVendor"
}
if [[ $# == 0 ]]; then
# Each of these can be run separately
updateSrc
updateFrontendAssets
updateNodeModulesHash backend
updateNodeModulesHash frontend
updateRustGbtCargoDeps
else
"$@"
fi