mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
31 lines
602 B
YAML
31 lines
602 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly
|
|
|
|
cache: cargo
|
|
|
|
before_script:
|
|
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=$TRAVIS_RUST_VERSION -y
|
|
- source ~/.cargo/env
|
|
- rustup component add rust-src
|
|
- (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
|
|
- (test -x $HOME/.cargo/bin/rustfmt || cargo install rustfmt)
|
|
- (test -x $HOME/.cargo/bin/xargo || cargo install xargo)
|
|
- cargo install-update -a
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- nasm
|
|
|
|
script:
|
|
- make
|