-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
56 lines (49 loc) · 1.47 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
language: c
sudo: false
addons:
apt:
packages:
- doxygen
install:
- export BOARD="$B" && echo "BOARD='$BOARD'"
- export TARGETS="$T" && echo "TARGETS='$TARGETS'"
- make conda
- export PATH=$PWD/conda/bin:$PATH
- which sdcc
- sdcc --version
- ./.travis/setup.sh
script:
- make $TARGETS
jobs:
fail_fast: true
include:
#-----------------------------------------
# Video targets
#-----------------------------------------
- stage: Build
env: B=opsis T="firmware-fx2"
- stage: Build
env: B=atlys T="firmware-fx2"
#-----------------------------------------
# Audio targets
#-----------------------------------------
- stage: Build
env: B=opsis T="firmware-audio-fx2"
- stage: Build
env: B=atlys T="firmware-audio-fx2"
- stage: Build
env: B=fx2miniboard T="firmware-audio-fx2"
#-----------------------------------------
# Unconfigured targets
#-----------------------------------------
- stage: Build
env: B=opsis T="firmware-unconfigured"
- stage: Build
env: B=atlys T="firmware-unconfigured"
#-----------------------------------------
# Build and deploy docs
#-----------------------------------------
- stage: Deploy docs
script:
- make docs
- ./.travis/push-docs.sh