mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +02:00
Add revs update script
This commit is contained in:
parent
7f2ec0f367
commit
23a8e99b6b
1 changed files with 21 additions and 0 deletions
21
scripts/update-revs.sh
Executable file
21
scripts/update-revs.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.."
|
||||
|
||||
if ! git diff-index --quiet HEAD; then
|
||||
echo "Not running update-revs.sh because git working directory is dirty" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
base=$(git rev-parse HEAD)
|
||||
git checkout --quiet "$base"
|
||||
|
||||
for rev in 1.{0..60}.0 stable beta nightly; do
|
||||
echo "Updating $rev branch"
|
||||
git branch --quiet --delete --force $rev &>/dev/null || true
|
||||
sed -i "s/required: true/required: false\n default: $rev/" action.yml
|
||||
git add action.yml
|
||||
git commit --quiet --message "toolchain: $rev"
|
||||
git checkout --quiet -b $rev
|
||||
git checkout --quiet "$base"
|
||||
done
|
Loading…
Reference in a new issue