-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 828 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file is used to configure Travis CI
language: c
dist: trusty
sudo: required
env:
matrix:
# Each line in the matrix will be a separate job when Travis CI runs the script section
# Travis does the clone like this
# git clone --depth=50 --branch=master https://github.com/epccs/RPUlux.git epccs/RPUlux
# so the path to each Makefile is as follows
- APP_PATH="SelfTest"
- APP_PATH="BlinkLED"
- APP_PATH="Uart"
- APP_PATH="Adc"
- APP_PATH="Digital"
- APP_PATH="Pwm"
- APP_PATH="i2c-debug"
- APP_PATH="CurrSour"
- APP_PATH="AmpHr"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gcc-avr binutils-avr avr-libc
script:
- avr-gcc --version
- cd $APP_PATH
- make
notifications:
email:
on_success: never
on_failure: always