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.

42 lines
906 B

sudo: required
language: rust
6 years ago
rust: nightly
cache:
cargo: true
addons:
apt:
packages:
- qemu
env:
matrix:
- ARCH="riscv32"
- ARCH="x86_64"
- ARCH="aarch64"
6 years ago
install:
- if [ $ARCH = riscv32 ]; then
6 years ago
export FILE="riscv64-unknown-elf-gcc-20181030-x86_64-linux-ubuntu14";
6 years ago
wget https://static.dev.sifive.com/dev-tools/$FILE.tar.gz;
tar xf $FILE.tar.gz;
export PATH=$PATH:$PWD/$FILE/bin;
fi
- if [ $ARCH = aarch64 ]; then
wget https://web.stanford.edu/class/cs140e/files/aarch64-none-elf-linux-x64.tar.gz;
tar -xzvf aarch64-none-elf-linux-x64.tar.gz;
export PATH=$PATH:$PWD/aarch64-none-elf/bin;
fi
6 years ago
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)
6 years ago
script:
6 years ago
- cd kernel && make build arch=$ARCH