42 lines
2.0 KiB
Bash
Executable File
42 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
# Check if necessary tools are installed
|
|
if ! command -v git &> /dev/null || ! command -v cargo &> /dev/null; then
|
|
echo "ERROR: Required tools (git, cargo) are not installed."
|
|
exit 1
|
|
fi
|
|
|
|
git config --global user.email "release-tests-no-reply@zfnd.org"
|
|
git config --global user.name "Automated Release Test"
|
|
|
|
# Ensure cargo-release is installed
|
|
if ! cargo release --version &> /dev/null; then
|
|
echo "ERROR: cargo release must be installed."
|
|
exit 1
|
|
fi
|
|
|
|
# Release process
|
|
# We use the same commands as the [release drafter](https://github.com/ZcashFoundation/zebra/blob/main/.github/PULL_REQUEST_TEMPLATE/release-checklist.md#update-crate-versions)
|
|
# with an extra `--no-confirm` argument for non-interactive testing.
|
|
# Update everything except for alpha crates and zebrad:
|
|
cargo release version --verbose --execute --no-confirm --allow-branch '*' --workspace --exclude zebrad --exclude zebra-scan --exclude zebra-grpc patch
|
|
|
|
# Due to a bug in cargo-release, we need to pass exact versions for alpha crates:
|
|
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.9
|
|
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.7
|
|
|
|
# Update zebrad:
|
|
# TODO: Revert `2.0.0-rc.0` to `patch` in the next release candidate.
|
|
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebrad 2.0.0-rc.0
|
|
# Continue with the release process:
|
|
cargo release replace --verbose --execute --no-confirm --allow-branch '*' --package zebrad
|
|
cargo release commit --verbose --execute --no-confirm --allow-branch '*'
|
|
|
|
# Dry run to check the release
|
|
# Workaround for unpublished dependency version errors: https://github.com/crate-ci/cargo-release/issues/691
|
|
# TODO: check all crates after fixing these errors
|
|
cargo release publish --verbose --dry-run --allow-branch '*' --workspace --exclude zebra-consensus --exclude zebra-utils --exclude zebrad --exclude zebra-scan
|
|
|
|
echo "Release process completed."
|