Skip to content

Commit

Permalink
install a more recent cross
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Mar 12, 2017
1 parent 28a5119 commit 2bc1835
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ main() {
local target=
if [ $TRAVIS_OS_NAME = linux ]; then
target=x86_64-unknown-linux-gnu
sort=sort
else
target=x86_64-apple-darwin
sort=gsort
fi

local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/cross \
| cut -d/ -f3 \
| grep -E '^v[0-9.]+$' \
| $sort --version-sort \
| tail -n1)
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- \
--force \
--git japaric/cross \
--tag v0.1.4 \
--tag $tag \
--target $target
}

Expand Down

0 comments on commit 2bc1835

Please sign in to comment.