mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-09-02 11:53:23 +00:00
33 lines
854 B
Bash
33 lines
854 B
Bash
set -ex
|
|
|
|
main() {
|
|
curl -sSf https://build.travis-ci.org/files/rustup-init.sh | sh -s -- --default-toolchain=nightly -y
|
|
export PATH=$HOME/.cargo/bin:$PATH
|
|
|
|
npm install -g webpack
|
|
|
|
local target=
|
|
if [ $TRAVIS_OS_NAME = linux ]; then
|
|
target=x86_64-unknown-linux-musl
|
|
sort=sort
|
|
fi
|
|
|
|
rustup target install $TARGET
|
|
|
|
# This fetches latest stable release
|
|
local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/cross \
|
|
| cut -d/ -f3 \
|
|
| grep -E '^v[0.1.0-9.]+$' \
|
|
| $sort --version-sort \
|
|
| tail -n1)
|
|
|
|
curl -LSfs https://japaric.github.io/trust/install.sh | \
|
|
sh -s -- \
|
|
--force \
|
|
--git japaric/cross \
|
|
--tag $tag \
|
|
--target $target
|
|
}
|
|
|
|
main
|