mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-22 16:49:31 +01:00
Merge pull request #16 from dtolnay/xargo
Install xargo with miri toolchain
This commit is contained in:
commit
6f4de0ad73
1 changed files with 7 additions and 3 deletions
|
@ -34,9 +34,13 @@ for tool in clippy miri; do
|
||||||
echo "Updating $tool branch"
|
echo "Updating $tool branch"
|
||||||
git checkout --quiet --detach nightly
|
git checkout --quiet --detach nightly
|
||||||
git branch --quiet --delete --force $tool &>/dev/null || true
|
git branch --quiet --delete --force $tool &>/dev/null || true
|
||||||
|
if [ $tool == miri ]; then
|
||||||
|
default="miri, rust-src"
|
||||||
|
echo -e " - uses: dtolnay/install@xargo\n with:\n bin: xargo-check" >> action.yml
|
||||||
|
else
|
||||||
default=$tool
|
default=$tool
|
||||||
if [ $tool == miri ]; then default+=,\ rust-src; fi
|
fi
|
||||||
sed -i "/required: false/{N;s/\n$/\n default: $default\n/}" action.yml
|
sed -i "/required: false/{N;s/\n$/\n default: $tool\n/}" action.yml
|
||||||
git add action.yml
|
git add action.yml
|
||||||
git commit --quiet --message "components: $tool"
|
git commit --quiet --message "components: $tool"
|
||||||
git checkout --quiet -b $tool
|
git checkout --quiet -b $tool
|
||||||
|
|
Loading…
Reference in a new issue