This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
forked from timvideos/HDMI2USB-litex-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
151 lines (116 loc) · 3.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
language:
- c
compiler:
- gcc
sudo: false
addons:
apt:
update: true
packages:
- build-essential
- fxload
- gnupg
- libftdi-dev
- libreadline-dev
- libusb-1.0-0-dev
- python-yaml
- realpath
- util-linux
git:
submodules: false
env:
global:
- HDMI2USB_UDEV_IGNORE=1
- CLEAN_CHECK=1
- PREBUILT_DIR="/tmp/HDMI2USB-firmware-prebuilt"
# Travis reports incorrect the hosts number of processors, override to 2
# cores.
- JOBS=2
install:
- export CPUS="$C" && echo "CPUS='$CPUS'"
- export PLATFORMS="$P" && echo "PLATFORMS='$PLATFORMS'"
- export TARGETS="$T" && echo "TARGETS='$TARGETS'"
- export FIRMWARE="$F" && echo "FIRMWARE='$FIRMWARE'"
- $PWD/.travis/setup.sh
script:
- $PWD/.travis/build.sh
after_success:
- $PWD/.travis/update-prebuilt-list.sh
notifications:
email:
irc:
channels:
- "chat.freenode.net#hdmi2usb"
template:
- "[%{repository_slug}/%{branch}#%{build_number}] (%{commit}): %{message} (%{build_url})"
jobs:
fail_fast: true
allow_failures:
- env: C=or1k P=mimasv2 T="base"
include:
#--------------------------------------------
# Base targets
#--------------------------------------------
# lm32 Base targets
- stage: Targets - Base
env: C=lm32 P=arty T="base net"
- stage: Targets - Base
env: C=lm32 P=atlys T="base net"
- stage: Targets - Base
env: C=lm32 P=mimasv2 T="base"
- stage: Targets - Base
env: C=lm32 P=minispartan6 T="base"
- stage: Targets - Base
env: C=lm32 P=netv2 T="base"
- stage: Targets - Base
env: C=lm32 P=nexys_video T="base net"
- stage: Targets - Base
env: C=lm32 P=opsis T="base net"
- stage: Targets - Base
env: C=lm32 P=pipistrello T="base"
- stage: Targets - Base
env: C=lm32 P=saturn T="base"
- stage: Targets - Base
env: C=lm32 P=galatea T="base"
- stage: Targets - Base
env: C=lm32 P=neso T="base"
- stage: Targets - Base
env: C=lm32 P=waxwing T="base"
- stage: Targets - Base
env: C=lm32 P=basys3 T="base"
- stage: Targets - Base
env: C=lm32 P=cmod_a7 T="base"
# or1k base targets
- stage: Targets - Base
env: C=or1k P=arty T="base net"
- stage: Targets - Base
env: C=or1k P=atlys T="base net"
- stage: Targets - Base
env: C=or1k P=mimasv2 T="base"
- stage: Targets - Base
env: C=or1k P=opsis T="base net"
- stage: Targets - Base
env: C=or1k P=pipistrello T="base"
# Linux Targets
#--------------------------------------------
- stage: Targets - Base
env: C=or1k.linux F=linux P=arty T="net"
#--------------------------------------------
# Video Targets
#--------------------------------------------
- stage: Targets - Video
env: C=lm32 P=atlys T="video"
#- stage: Targets - Video
# env: C=lm32 P=netv2 T="video"
- stage: Targets - Video
env: C=lm32 P=nexys_video T="video"
- stage: Targets - Video
env: C=lm32 P=opsis T="video"
#--------------------------------------------
# HDMI2USB Targets
#--------------------------------------------
- stage: Targets - HDMI2USB
env: C=lm32 P=atlys T="hdmi2usb"
- stage: Targets - HDMI2USB
env: C=lm32 P=opsis T="hdmi2usb"