File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ before_install: set -e
28
28
29
29
install :
30
30
- bash ci/install.sh
31
+ - export PATH="$PATH:$PWD/gcc/bin"
31
32
32
33
script :
33
34
- bash ci/script.sh
Original file line number Diff line number Diff line change 4
4
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
5
5
rustup target add $TARGET
6
6
fi
7
+
8
+ mkdir gcc
9
+ curl -L https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.1.0-2018.12.0-x86_64-linux-ubuntu14.tar.gz | tar --strip-components=1 -C gcc -xz
7
10
}
8
11
9
12
main
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ main() {
6
6
if [ $TRAVIS_RUST_VERSION = nightly ]; then
7
7
cargo check --target $TARGET --features ' const-fn inline-asm'
8
8
fi
9
+
10
+ if [ $TARGET = x86_64-unknown-linux-gnu ]; then
11
+ ./check-blobs.sh
12
+ fi
9
13
}
10
14
11
15
main
You can’t perform that action at this time.
0 commit comments