summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2020-11-09 21:25:41 +0900
committerGitHub <noreply@github.com>2020-11-09 07:25:41 -0500
commit59644d45928fff5ae2ef509a2ed6a5b63a7baf8c (patch)
tree76f49daa22dda2f611716b3729b854cafc05aadb /ci
parent3ca324fda75885bf3523762ed57811d80abb3b00 (diff)
ci: install cross from crates.io
A new release of cross has been put out, so we no longer need to install it from git. PR #1728
Diffstat (limited to 'ci')
-rw-r--r--ci/utils.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/utils.sh b/ci/utils.sh
index f9c59339..f3dc96d2 100644
--- a/ci/utils.sh
+++ b/ci/utils.sh
@@ -99,9 +99,7 @@ is_osx() {
builder() {
if is_musl && is_x86_64; then
- # cargo install cross
- # To work around https://github.com/rust-embedded/cross/issues/357
- cargo install --git https://github.com/rust-embedded/cross --force
+ cargo install cross
echo "cross"
else
echo "cargo"