mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 00:16:17 +04:00
34 lines
501 B
YAML
34 lines
501 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly-2018-04-01
|
|
|
|
cache:
|
|
cargo: true
|
|
|
|
before_script:
|
|
- rustup component add rust-src
|
|
- (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
|
|
- (test -x $HOME/.cargo/bin/xargo || cargo install xargo)
|
|
- cargo install-update -a
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
email:
|
|
on_failure: change
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- nasm
|
|
- qemu
|
|
|
|
env:
|
|
matrix:
|
|
- TASK="build"
|
|
# - TASK="run travis=1"
|
|
|
|
script:
|
|
- make ${TASK}
|