We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
source
1 parent 6124a04 commit 3dbfae5Copy full SHA for 3dbfae5
.travis.yml
@@ -14,6 +14,7 @@ env: TARGET=x86_64-unknown-linux-gnu
14
15
install:
16
- sh ci/install.sh
17
+ - source ~/.cargo/bin
18
19
script:
20
- sh ci/script.sh
ci/install.sh
@@ -4,10 +4,13 @@ main() {
4
curl https://sh.rustup.rs -sSf | \
5
sh -s -- -y --default-toolchain $TRAVIS_RUST_VERSION
6
7
- source ~/.cargo/env
8
-
9
curl -LSfs http://japaric.github.io/trust/install.sh | \
10
- sh -s -- --force --git japaric/cross --tag v0.1.2 --target $TARGET
+ sh -s -- \
+ --force \
+ --git japaric/cross \
11
+ --tag v0.1.2 \
12
+ --target $TARGET \
13
+ --to ~/.cargo/bin
}
# NOTE(TRAVIS_BRANCH) Travis is configured to only build *pushes* (not PRs)
0 commit comments