You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
658 B
35 lines
658 B
sudo: required
|
|
|
|
language: rust
|
|
|
|
rust: nightly
|
|
|
|
cache:
|
|
cargo: true
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- qemu
|
|
|
|
env:
|
|
matrix:
|
|
- ARCH="riscv32"
|
|
- ARCH="x86_64"
|
|
|
|
install:
|
|
- if [ $ARCH = riscv32 ]; then
|
|
export FILE="riscv64-unknown-elf-gcc-20181030-x86_64-linux-ubuntu14";
|
|
wget https://static.dev.sifive.com/dev-tools/$FILE.tar.gz;
|
|
tar xf $FILE.tar.gz;
|
|
export PATH=$PATH:$PWD/$FILE/bin;
|
|
fi
|
|
|
|
before_script:
|
|
- rustup component add rust-src
|
|
- (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild)
|
|
- (test -x $HOME/.cargo/bin/bootimage || cargo install bootimage)
|
|
|
|
script:
|
|
- cd kernel && make build arch=$ARCH
|