-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
29 lines (26 loc) · 912 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
addons:
apt:
packages:
- libc6:i386
- libncurses5:i386
- libstdc++6:i386
install:
- (cd STM32F4Discovery-Resources && sudo ./install.sh)
- wget 'https://s3-us-west-2.amazonaws.com/ucsolarteam.hostedfiles/astyle'
- tar -zxvf astyle
- (cd astyle/build/gcc && make release && sudo make install)
- rm astyle -rf
before_script:
- source ~/.profile
script:
- (cd EpsilonLights && ./make.sh)
- (cd EpsilonDriverControls && ./make.sh)
- (cd EpsilonCCS && make)
- (cd EpsilonAuxBMS && ./make.sh)
- (cd EpsilonAuxBmsV2 && ./make.sh)
- "! (./format.sh EpsilonCCS | grep Formatted)"
- "! (./format.sh EpsilonLights | grep Formatted)"
- "! (./format.sh EpsilonDriverControls | grep Formatted)"
- "! (./format.sh EpsilonAuxBMS | grep Formatted)"
- "! (./format.sh EpsilonAuxBmsV2 | grep Formatted)"
language: c