Skip to content

Commit 038c8ac

Browse files
committed
Add travis CI
1 parent 69d9890 commit 038c8ac

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.travis.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
language: rust
2+
3+
sudo: required
4+
5+
services:
6+
- docker
7+
8+
notifications:
9+
email:
10+
on_success: never
11+
on_failure: change
12+
13+
addons:
14+
apt:
15+
packages:
16+
- ruby
17+
18+
rust:
19+
- nightly
20+
21+
os:
22+
- linux
23+
24+
cache: cargo
25+
26+
before_script:
27+
- rustup component add rust-src
28+
- (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
29+
- (test -x $HOME/.cargo/bin/xargo || cargo install xargo)
30+
- cargo install-update -a
31+
32+
script:
33+
- ruby utils/make_all.rb

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Bare Metal Rust Programming on Raspberry Pi 3
22

3+
[![Build Status](https://travis-ci.org/andre-richter/rust-raspi3-tutorial.svg?branch=master)](https://travis-ci.org/andre-richter/rust-raspi3-tutorial)
4+
35
## About this repository
46

57
Hi all. This repository aims to provide easy reference code for programming bare metal on the Raspberry Pi 3

0 commit comments

Comments
 (0)