mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
31 lines
481 B
YAML
31 lines
481 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly
|
|
|
|
os:
|
|
- linux
|
|
|
|
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
|
|
- /^post-.*$/
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cargo
|
|
|
|
script:
|
|
- cargo rustc -- -Z pre-link-arg=-nostartfiles
|