mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
39 lines
702 B
YAML
39 lines
702 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: always
|
|
|
|
branches:
|
|
only:
|
|
# This is where pull requests from "bors r+" are built.
|
|
- staging
|
|
# This is where pull requests from "bors try" are built.
|
|
- trying
|
|
# Build pull requests.
|
|
- master
|
|
# Build post braches
|
|
- /^z_post_.*$/
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cargo
|
|
|
|
before_script:
|
|
- rustup component add rust-src
|
|
- (test -x $HOME/.cargo/bin/cargo-install-latest || cargo install cargo-install-latest)
|
|
- cargo install-latest cargo-xbuild bootimage cargo-cache
|
|
|
|
script:
|
|
- bootimage build
|
|
- cargo cache --autoclean
|