rust/.travis.yml

31 lines
598 B
YAML
Raw Normal View History

sudo: false
2015-04-30 03:16:18 -05:00
language: rust
2015-05-21 22:50:58 -05:00
rust:
- stable
- beta
2015-05-21 22:50:58 -05:00
- nightly
os:
- linux
- osx
2015-04-30 03:16:18 -05:00
script:
- cargo build
- cargo test
before_deploy:
# TODO: cross build
- cargo build --release --target=x86_64-unknown-linux-gnu
- tar czf rustfmt-x86_64-unknown-linux-gnu.tar.gz Contributing.md Design.md README.md -C target/x86_64-unknown-linux-gnu/release/rustfmt rustfmt
deploy:
provider: releases
api_key:
secure: "your own encrypted key"
file:
- rustfmt-x86_64-unknown-linux-gnu.tar.gz
on:
repo: nrc/rustfmt
tags: true
condition: "$TRAVIS_OS_NAME = linux"
skip_cleanup: true