mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 06:17:49 +00:00
26 lines
386 B
YAML
26 lines
386 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- nasm
|
|
|
|
install:
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
- pip install pygments --user
|
|
- pip install pygments-github-lexers --user
|
|
|
|
script: bash scripts/travis-build.sh
|
|
|
|
after_success: sh scripts/travis-blog-update.sh
|