File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ matrix:
28
28
29
29
install :
30
30
- sh ci/install.sh
31
- - source ~/.cargo/env || true
32
31
33
32
script :
34
33
- bash ci/script.sh
Original file line number Diff line number Diff line change 1
1
set -ex
2
2
3
3
main () {
4
- curl https://sh.rustup.rs -sSf | \
5
- sh -s -- -y --default-toolchain $TRAVIS_RUST_VERSION
6
-
7
4
local target=
8
5
if [ $TRAVIS_OS_NAME = linux ]; then
9
6
target=x86_64-unknown-linux-gnu
Original file line number Diff line number Diff line change @@ -9,13 +9,14 @@ test_svd() {
9
9
}
10
10
11
11
main () {
12
- cross build --target $TARGET
13
- cross build --target $TARGET --release
12
+ cross check --target $TARGET
14
13
15
14
if [ ! -z $DISABLE_TESTS ]; then
16
15
return
17
16
fi
18
17
18
+ cross build --target $TARGET --release
19
+
19
20
case $TRAVIS_OS_NAME in
20
21
linux)
21
22
td=$( mktemp -d)
You can’t perform that action at this time.
0 commit comments