Skip to content

Commit

Permalink
Remove checks --all-features in release and solve multiple package …
Browse files Browse the repository at this point in the history
…versions conflict
  • Loading branch information
Radonirinaunimi committed Feb 14, 2025
1 parent b25e567 commit 01eedb0
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions maintainer/make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,6 @@ for crate in ${crates[@]}; do
fi
done

echo ">>> Testing release configuration with default features ..."

cargo test --release

for feature in ${features[@]}; do
echo ">>> Testing release configuration with \`${feature}\` feature ..."

cargo test --release --features=${feature}
done

echo ">>> Updating version strings ..."

# we don't want to create a changelog entry for prereleases, which are solely
Expand All @@ -88,7 +78,7 @@ done

echo ">>> Updating Cargo.lock ..."

echo ${crates[@]} | xargs printf ' -p %s' | xargs cargo update
echo ${crates[@]} | xargs printf " -p %s@${version}" | xargs cargo update
git add Cargo.lock

echo ">>> Testing if 'pineappl' can be published ..."
Expand Down

0 comments on commit 01eedb0

Please sign in to comment.