]> git.ipfire.org Git - people/ms/u-boot.git/blame - .travis.yml
travis-ci: use buildman -P everywhere
[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
2ded4bf9
SW
65 - if [[ "${TOOLCHAIN}" == *x86_64* ]]; then
66 ./tools/buildman/buildman --fetch-arch x86_64;
67 echo -e "\n[toolchain-prefix]\nx86 = ${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-" >> ~/.buildman;
68 fi
cd402e01 69 - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi
c7cb334d
MR
70
71script:
4899210c 72 # Exit code 129 means warnings only.
050c7569 73 - if [[ "${BUILDMAN}" != "" ]]; then
4899210c 74 set +e;
440d8467 75 tools/buildman/buildman -P ${BUILDMAN};
0c5145fc
SW
76 ret=$?;
77 if [[ $ret -eq 0 || $ret -eq 129 ]]; then
4899210c
TR
78 exit 0;
79 else
0c5145fc
SW
80 exit $ret;
81 fi;
050c7569 82 fi
c7cb334d
MR
83
84matrix:
85 include:
86 # we need to build by vendor due to 50min time limit for builds
87 # each env setting here is a dedicated build
050c7569
RM
88 - env:
89 - BUILDMAN="arm1136"
050c7569
RM
90 - env:
91 - BUILDMAN="arm1176"
c7cb334d 92 - env:
050c7569 93 - BUILDMAN="arm720t"
c7cb334d 94 - env:
050c7569 95 - BUILDMAN="arm920t"
c7cb334d 96 - env:
050c7569 97 - BUILDMAN="atmel -x avr32"
c7cb334d 98 - env:
050c7569
RM
99 - BUILDMAN="avr32"
100 TOOLCHAIN="avr32"
c7cb334d 101 - env:
050c7569 102 - BUILDMAN="davinci"
c7cb334d 103 - env:
050c7569 104 - BUILDMAN="denx"
c7cb334d 105 - env:
050c7569 106 - BUILDMAN="freescale -x powerpc,m68k,aarch64"
c7cb334d 107 - env:
050c7569 108 - BUILDMAN="sandbox x86"
cd402e01 109 TOOLCHAIN="x86_64"
c7cb334d 110 - env:
050c7569 111 - BUILDMAN="kirkwood"
c7cb334d 112 - env:
050c7569
RM
113 - BUILDMAN="m68k"
114 TOOLCHAIN="m68k"
76761e7f
TR
115 - env:
116 - BUILDMAN="microblaze"
117 TOOLCHAIN="microblaze"
c7cb334d 118 - env:
050c7569
RM
119 - BUILDMAN="mips"
120 TOOLCHAIN="mips"
d9aa0197 121 - env:
050c7569 122 - BUILDMAN="mpc512x"
d9aa0197 123 - env:
050c7569 124 - BUILDMAN="mpc5xx"
d9aa0197 125 - env:
050c7569 126 - BUILDMAN="mpc5xxx"
d9aa0197 127 - env:
050c7569 128 - BUILDMAN="mpc8260"
c7cb334d 129 - env:
050c7569 130 - BUILDMAN="mpc83xx"
c7cb334d 131 - env:
050c7569 132 - BUILDMAN="mpc85xx -x freescale"
d9aa0197 133 - env:
050c7569 134 - 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 135 - env:
050c7569 136 - BUILDMAN="t208xrdb t4qds t102*"
8cb2101b 137 - env:
050c7569 138 - BUILDMAN="p1_p2_rdb_pc p1010rdb"
d9aa0197 139 - env:
050c7569 140 - BUILDMAN="corenet_ds b4860qds sbc8548 bsc91*"
c7cb334d 141 - env:
050c7569 142 - BUILDMAN="mpc86xx"
c7cb334d 143 - env:
050c7569 144 - BUILDMAN="mpc8xx"
c7cb334d 145 - env:
050c7569 146 - BUILDMAN="siemens"
050c7569
RM
147 - env:
148 - BUILDMAN="ti"
050c7569
RM
149 - env:
150 - BUILDMAN="aarch64"
151 TOOLCHAIN="aarch64"
76761e7f
TR
152 - env:
153 - BUILDMAN="sh4"
154 TOOLCHAIN="sh4"
155 - env:
156 - BUILDMAN="xtensa"
157 TOOLCHAIN="xtensa"
c7cb334d
MR
158
159 # QA jobs for code analytics
160 # static code analysis with cppcheck (we can add --enable=all later)
d7882210
SW
161 - env:
162 - JOB="cppcheck"
163 script:
c85b52e4 164 - cppcheck --force --quiet --inline-suppr .
c7cb334d 165 # search for TODO within source tree
d7882210
SW
166 - env:
167 - JOB="grep TODO"
168 script:
c85b52e4 169 - grep -r TODO .
c7cb334d 170 # search for FIXME within source tree
d7882210
SW
171 - env:
172 - JOB="grep FIXME HACK"
173 script:
c85b52e4 174 - grep -r FIXME .
c7cb334d 175 # search for HACK within source tree and ignore HACKKIT board
c7cb334d
MR
176 script:
177 - grep -r HACK . | grep -v HACKKIT
178 # some statistics about the code base
d7882210
SW
179 - env:
180 - JOB="sloccount"
181 script:
c85b52e4 182 - sloccount .
07bf2122 183 # test/py
d7882210
SW
184 - env:
185 - JOB="test.py sandbox"
186 script:
c85b52e4 187 - ./test/py/test.py --bd sandbox --build
5ac5861c 188 - env:
d7882210 189 - JOB="test.py ARM"
5ac5861c
TR
190 - CROSS_COMPILE="/usr/bin/arm-linux-gnueabihf-"
191 script:
192 - ./test/py/test.py --bd vexpress_ca15_tc2 --id qemu --build;
193 ./test/py/test.py --bd vexpress_ca9x4 --id qemu --build;
194 ./test/py/test.py --bd integratorcp_cm926ejs --id qemu --build;
195 - env:
d7882210 196 - JOB="test.py MIPS"
5ac5861c
TR
197 - TOOLCHAIN="mips"
198 CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/mips-linux/bin/mips-linux-"
199 script:
200 - ./test/py/test.py --bd qemu_mips --build -k 'not sleep';
201 ./test/py/test.py --bd qemu_mipsel --build -k 'not sleep';
202 ./test/py/test.py --bd qemu_mips64 --build -k 'not sleep';
203 ./test/py/test.py --bd qemu_mips64el --build -k 'not sleep';
204 - env:
d7882210 205 - JOB="test.py PowerPC"
5ac5861c
TR
206 - CROSS_COMPILE="/usr/bin/powerpc-linux-gnu-"
207 script:
208 - ./test/py/test.py --bd qemu-ppce500 --build -k 'not sleep'
209 - env:
d7882210 210 - JOB="test.py x86-64"
5ac5861c
TR
211 - TOOLCHAIN="x86_64"
212 BUILD_ROM=yes
213 CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-"
214 script:
215 - ./test/py/test.py --bd qemu-x86 --build -k 'not sleep'
c7cb334d 216
c7cb334d 217# TODO make it perfect ;-r