Skip to content

Commit

Permalink
build: Add travis configuration
Browse files Browse the repository at this point in the history
Add as simple travis script as the basis for the CI with build, clippy
and format checks.

Signed-off-by: Rob Bradford <[email protected]>
  • Loading branch information
rbradford committed May 10, 2019
1 parent ed242a2 commit f1cc1e6
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
dist: xenial
language: rust

rust:
- nightly

before_script:
- rustup component add clippy
- rustup component add rustfmt
- rustup component add rust-src
- cargo install cargo-xbuild
- sudo apt-get install -y mtools

addons:
apt:
update: true

script:
- cargo xbuild --release --target target.json
- cargo xclippy -- -D warnings
- cargo clippy --all-targets --all-features -- -D warnings
- cargo fmt --all -- --check
- wget https://download.clearlinux.org/releases/28660/clear/clear-28660-kvm.img.xz
- unxz clear-28660-kvm.img.xz
- ./make-test-disks.sh
- cargo test

deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: target/target/release/hypervisor-fw
skip_cleanup: true
on:
tags: true

0 comments on commit f1cc1e6

Please sign in to comment.