We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f2374a commit e1a67e7Copy full SHA for e1a67e7
ci/install.sh
@@ -4,11 +4,16 @@ main() {
4
curl https://sh.rustup.rs -sSf | \
5
sh -s -- -y --default-toolchain $TRAVIS_RUST_VERSION
6
7
+ local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/cross \
8
+ | cut -d/ -f3 \
9
+ | grep -E '^v[0-9.]+$' \
10
+ | sort --version-sort \
11
+ | tail -n1)
12
curl -LSfs http://japaric.github.io/trust/install.sh | \
13
sh -s -- \
14
--force \
15
--git japaric/cross \
- --tag v0.1.2 \
16
+ --tag $tag \
17
--target x86_64-unknown-linux-musl \
18
--to ~/.cargo/bin
19
}
ci/script.sh
@@ -1,8 +1,6 @@
1
set -ex
2
3
main() {
- cargo generate-lockfile
-
case $TARGET in
thumbv*-none-eabi*)
cross build --target $TARGET
0 commit comments