]> git.ipfire.org Git - people/ms/u-boot.git/blame - .travis.yml
travis-ci: use correct exit code on errors
[people/ms/u-boot.git] / .travis.yml
CommitLineData
c7cb334d
MR
1# Copyright Roger Meier <r.meier@siemens.com>
2# SPDX-License-Identifier: GPL-2.0+
3
4# build U-Boot on Travis CI - https://travis-ci.org/
5
2bb76f33
TR
6sudo: required
7dist: trusty
e4c1b4d8 8
c7cb334d
MR
9language: c
10
050c7569
RM
11addons:
12 apt:
5ac5861c
TR
13 sources:
14 - sourceline: 'ppa:gns3/qemu'
050c7569
RM
15 packages:
16 - cppcheck
17 - sloccount
18 - sparse
19 - bc
20 - build-essential
21 - libsdl1.2-dev
07bf2122
SW
22 - python
23 - python-virtualenv
5ac5861c
TR
24 - qemu-system-arm
25 - qemu-system-mips
26 - qemu-system-ppc
27 - qemu-system-x86
cd402e01
TR
28 - gcc-powerpc-linux-gnu
29 - gcc-arm-linux-gnueabihf
30 - iasl
c7cb334d
MR
31
32install:
c7cb334d 33 # install latest device tree compiler
4084c7fa 34 - git clone --depth=1 git://git.kernel.org/pub/scm/utils/dtc/dtc.git /tmp/dtc
c7cb334d 35 - make -j4 -C /tmp/dtc
5ac5861c
TR
36 # Clone uboot-test-hooks
37 - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
38 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
39 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
c7cb334d 40 # prepare buildman environment
43a68e49 41 - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
cd402e01 42 - echo -e "\n[toolchain-alias]\nblackfin = bfin\nsh = sh4\nopenrisc = or32" >> ~/.buildman
c7cb334d 43 - cat ~/.buildman
07bf2122
SW
44 - virtualenv /tmp/venv
45 - . /tmp/venv/bin/activate
46 - pip install pytest
c7cb334d
MR
47
48env:
49 global:
5ac5861c 50 - PATH=/tmp/dtc:/tmp/uboot-test-hooks/bin:$PATH
c7cb334d 51 - BUILD_DIR=build
c7cb334d
MR
52 - HOSTCC="cc"
53 - HOSTCXX="c++"
c7cb334d
MR
54
55before_script:
050c7569
RM
56 # install toolchains based on TOOLCHAIN} variable
57 - if [[ "${TOOLCHAIN}" == *aarch64* ]]; then ./tools/buildman/buildman --fetch-arch aarch64 ; fi
050c7569 58 - if [[ "${TOOLCHAIN}" == *avr32* ]]; then ./tools/buildman/buildman --fetch-arch avr32 ; fi
cd402e01 59 - if [[ "${TOOLCHAIN}" == *bfin* ]]; then ./tools/buildman/buildman --fetch-arch bfin ; fi
050c7569 60 - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
cd402e01 61 - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
050c7569 62 - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
cd402e01
TR
63 - if [[ "${TOOLCHAIN}" == *or32* ]]; then ./tools/buildman/buildman --fetch-arch or32 ; fi
64 - if [[ "${TOOLCHAIN}" == *sh4* ]]; then ./tools/buildman/buildman --fetch-arch sh4 ; fi
65 - if [[ "${TOOLCHAIN}" == *x86_64* ]]; then ./tools/buildman/buildman --fetch-arch x86_64 ; fi
66 - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi
c7cb334d
MR
67
68script:
4899210c 69 # Exit code 129 means warnings only.
050c7569 70 - if [[ "${BUILDMAN}" != "" ]]; then
4899210c 71 set +e;
050c7569 72 tools/buildman/buildman ${BUILDMAN};
0c5145fc
SW
73 ret=$?;
74 if [[ $ret -eq 0 || $ret -eq 129 ]]; then
4899210c
TR
75 exit 0;
76 else
0c5145fc
SW
77 exit $ret;
78 fi;
050c7569 79 fi
c7cb334d
MR
80
81matrix:
82 include:
83 # we need to build by vendor due to 50min time limit for builds
84 # each env setting here is a dedicated build
050c7569
RM
85 - env:
86 - BUILDMAN="arm1136"
050c7569
RM
87 - env:
88 - BUILDMAN="arm1176"
c7cb334d 89 - env:
050c7569 90 - BUILDMAN="arm720t"
c7cb334d 91 - env:
050c7569 92 - BUILDMAN="arm920t"
c7cb334d 93 - env:
050c7569 94 - BUILDMAN="atmel -x avr32"
c7cb334d 95 - env:
050c7569
RM
96 - BUILDMAN="avr32"
97 TOOLCHAIN="avr32"
c7cb334d 98 - env:
050c7569 99 - BUILDMAN="davinci"
c7cb334d 100 - env:
050c7569 101 - BUILDMAN="denx"
c7cb334d 102 - env:
050c7569 103 - BUILDMAN="freescale -x powerpc,m68k,aarch64"
c7cb334d 104 - env:
050c7569 105 - BUILDMAN="sandbox x86"
cd402e01
TR
106 TOOLCHAIN="x86_64"
107 script:
43a68e49 108 - echo -e "\n[toolchain-prefix]\nx86 = ${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-" >> ~/.buildman
c7cb334d 109 - env:
050c7569 110 - BUILDMAN="kirkwood"
c7cb334d 111 - env:
050c7569
RM
112 - BUILDMAN="m68k"
113 TOOLCHAIN="m68k"
76761e7f
TR
114 - env:
115 - BUILDMAN="microblaze"
116 TOOLCHAIN="microblaze"
c7cb334d 117 - env:
050c7569
RM
118 - BUILDMAN="mips"
119 TOOLCHAIN="mips"
d9aa0197 120 - env:
050c7569 121 - BUILDMAN="mpc512x"
d9aa0197 122 - env:
050c7569 123 - BUILDMAN="mpc5xx"
d9aa0197 124 - env:
050c7569 125 - BUILDMAN="mpc5xxx"
d9aa0197 126 - env:
050c7569 127 - BUILDMAN="mpc8260"
c7cb334d 128 - env:
050c7569 129 - BUILDMAN="mpc83xx"
c7cb334d 130 - env:
050c7569 131 - BUILDMAN="mpc85xx -x freescale"
d9aa0197 132 - env:
050c7569 133 - BUILDMAN="mpc85xx -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x sbc8548 -x bsc91*"
d9aa0197 134 - env:
050c7569 135 - BUILDMAN="t208xrdb t4qds t102*"
8cb2101b 136 - env:
050c7569 137 - BUILDMAN="p1_p2_rdb_pc p1010rdb"
d9aa0197 138 - env:
050c7569 139 - BUILDMAN="corenet_ds b4860qds sbc8548 bsc91*"
c7cb334d 140 - env:
050c7569 141 - BUILDMAN="mpc86xx"
c7cb334d 142 - env:
050c7569 143 - BUILDMAN="mpc8xx"
c7cb334d 144 - env:
050c7569 145 - BUILDMAN="siemens"
050c7569
RM
146 - env:
147 - BUILDMAN="ti"
050c7569
RM
148 - env:
149 - BUILDMAN="aarch64"
150 TOOLCHAIN="aarch64"
76761e7f
TR
151 - env:
152 - BUILDMAN="sh4"
153 TOOLCHAIN="sh4"
154 - env:
155 - BUILDMAN="xtensa"
156 TOOLCHAIN="xtensa"
c7cb334d
MR
157
158 # QA jobs for code analytics
159 # static code analysis with cppcheck (we can add --enable=all later)
d7882210
SW
160 - env:
161 - JOB="cppcheck"
162 script:
c85b52e4 163 - cppcheck --force --quiet --inline-suppr .
c7cb334d 164 # search for TODO within source tree
d7882210
SW
165 - env:
166 - JOB="grep TODO"
167 script:
c85b52e4 168 - grep -r TODO .
c7cb334d 169 # search for FIXME within source tree
d7882210
SW
170 - env:
171 - JOB="grep FIXME HACK"
172 script:
c85b52e4 173 - grep -r FIXME .
c7cb334d 174 # search for HACK within source tree and ignore HACKKIT board
c7cb334d
MR
175 script:
176 - grep -r HACK . | grep -v HACKKIT
177 # some statistics about the code base
d7882210
SW
178 - env:
179 - JOB="sloccount"
180 script:
c85b52e4 181 - sloccount .
07bf2122 182 # test/py
d7882210
SW
183 - env:
184 - JOB="test.py sandbox"
185 script:
c85b52e4 186 - ./test/py/test.py --bd sandbox --build
5ac5861c 187 - env:
d7882210 188 - JOB="test.py ARM"
5ac5861c
TR
189 - CROSS_COMPILE="/usr/bin/arm-linux-gnueabihf-"
190 script:
191 - ./test/py/test.py --bd vexpress_ca15_tc2 --id qemu --build;
192 ./test/py/test.py --bd vexpress_ca9x4 --id qemu --build;
193 ./test/py/test.py --bd integratorcp_cm926ejs --id qemu --build;
194 - env:
d7882210 195 - JOB="test.py MIPS"
5ac5861c
TR
196 - TOOLCHAIN="mips"
197 CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/mips-linux/bin/mips-linux-"
198 script:
199 - ./test/py/test.py --bd qemu_mips --build -k 'not sleep';
200 ./test/py/test.py --bd qemu_mipsel --build -k 'not sleep';
201 ./test/py/test.py --bd qemu_mips64 --build -k 'not sleep';
202 ./test/py/test.py --bd qemu_mips64el --build -k 'not sleep';
203 - env:
d7882210 204 - JOB="test.py PowerPC"
5ac5861c
TR
205 - CROSS_COMPILE="/usr/bin/powerpc-linux-gnu-"
206 script:
207 - ./test/py/test.py --bd qemu-ppce500 --build -k 'not sleep'
208 - env:
d7882210 209 - JOB="test.py x86-64"
5ac5861c
TR
210 - TOOLCHAIN="x86_64"
211 BUILD_ROM=yes
212 CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-"
213 script:
214 - ./test/py/test.py --bd qemu-x86 --build -k 'not sleep'
c7cb334d 215
c7cb334d 216# TODO make it perfect ;-r