Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further automate pre_publish.sh #2962

Merged
merged 2 commits into from Aug 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 7 additions & 8 deletions pre_publish.sh
Expand Up @@ -4,20 +4,19 @@ set -e

./util/update_lints.py

git status --short | sort | grep -v README.md | grep -v helper.txt | sort > helper.txt

# abort if the files differ
diff "publish.files" "helper.txt"

rm helper.txt

# add all changed files
git add .
git commit -m "Bump the version"

set +e

echo "Running \`cargo fmt\`.."

cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
cargo fmt -- --write-mode=overwrite

echo "remember to add a git tag and running 'cargo test' before committing the rustfmt changes"
echo "Running tests to make sure \`cargo fmt\` did not break anything.."

cargo test

echo "If the tests passed, review and commit the formatting changes and remember to add a git tag."