Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
check_dependencies() {
local missing_deps=0
local required_deps=("curl" "git" "gpg" "cc" "protoc")

# Either shasum or sha256sum/sha512sum are required
local has_sha_tools=0

Expand All @@ -32,7 +32,7 @@ check_dependencies() {
missing_deps=1
fi
done

# Check for either shasum or sha256sum/sha512sum
if command -v shasum &> /dev/null; then
has_sha_tools=1
Expand All @@ -42,7 +42,7 @@ check_dependencies() {
echo "Error: Neither shasum nor sha256sum/sha512sum are installed or in PATH"
missing_deps=1
fi

if [ $missing_deps -ne 0 ]; then
echo "Please install missing dependencies and try again"
exit 1
Expand Down Expand Up @@ -163,7 +163,7 @@ test_source_distribution() {
git clone https://github.com/apache/parquet-testing.git parquet-testing

cargo build
cargo test --all --features=avro
cargo test --profile=ci --all --features=avro

if ( find -iname 'Cargo.toml' | xargs grep SNAPSHOT ); then
echo "Cargo.toml version should not contain SNAPSHOT for releases"
Expand Down
Loading