Skip to content

Commit

Permalink
Add Travis CI support
Browse files Browse the repository at this point in the history
Currently it only checks that the code builds.
  • Loading branch information
GabrielMajeri committed Sep 20, 2018
1 parent d89e95e commit 4148e36
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
@@ -0,0 +1,21 @@
sudo: false

# We need a newer version of Python
language: python

# Need Python for build script
python: 3.6

install:
# Manually install nightly Rust
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env"
- rustc -V
- cargo -V
- rustup component add rust-src
- cargo install cargo-xbuild

script:
- cd uefi-test-runner && ./build.py build

cache: cargo

0 comments on commit 4148e36

Please sign in to comment.