2 # SPDX-License-Identifier: GPL-2.0+
4 # build U-Boot on Travis CI - https://travis-ci.org/
14 - sourceline: 'ppa:gns3/qemu'
28 - gcc-powerpc-linux-gnu
29 - gcc-arm-linux-gnueabihf
30 - gcc-aarch64-linux-gnu
34 # install latest device tree compiler
35 - git clone --depth=1 git://git.kernel.org/pub/scm/utils/dtc/dtc.git /tmp/dtc
36 - make -j4 -C /tmp/dtc
37 # Clone uboot-test-hooks
38 - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
39 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
40 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
41 # prepare buildman environment
42 - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
43 - echo -e "\n[toolchain-alias]\nblackfin = bfin\nsh = sh4\nopenrisc = or32" >> ~/.buildman
45 - virtualenv /tmp/venv
46 - . /tmp/venv/bin/activate
51 - PATH=/tmp/dtc:/tmp/uboot-test-hooks/bin:$PATH
57 # install toolchains based on TOOLCHAIN} variable
58 - if [[ "${TOOLCHAIN}" == *avr32* ]]; then ./tools/buildman/buildman --fetch-arch avr32 ; fi
59 - if [[ "${TOOLCHAIN}" == *bfin* ]]; then ./tools/buildman/buildman --fetch-arch bfin ; fi
60 - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
61 - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
62 - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
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
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;
69 - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi
72 # Comments must be outside the command strings below, or the Travis parser
75 # Exit code 129 means warnings only.
76 - if [[ "${BUILDMAN}" != "" ]]; then
78 tools/buildman/buildman -P ${BUILDMAN};
80 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
84 # "not a_test_which_does_not_exist" is a dummy -k parameter which will
85 # never prevent any test from running. That way, we can always pass
86 # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
88 - if [[ "${TEST_PY_BD}" != "" ]]; then
89 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
90 -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
91 --build-dir `cd .. && pwd`/.bm-work/${TEST_PY_BD};
96 # we need to build by vendor due to 50min time limit for builds
97 # each env setting here is a dedicated build
107 - BUILDMAN="atmel -x avr32"
116 - JOB="Freescale ARM"
117 BUILDMAN="freescale -x powerpc,m68k"
119 - BUILDMAN="sandbox x86"
122 - BUILDMAN="kirkwood"
127 - BUILDMAN="microblaze"
128 TOOLCHAIN="microblaze"
143 - BUILDMAN="mpc85xx -x freescale"
145 - BUILDMAN="mpc85xx -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x sbc8548 -x bsc91*"
147 - BUILDMAN="t208xrdb t4qds t102*"
149 - BUILDMAN="p1_p2_rdb_pc p1010rdb"
151 - BUILDMAN="corenet_ds b4860qds sbc8548 bsc91*"
163 - BUILDMAN="uniphier"
165 - BUILDMAN="aarch64 -x tegra,freescale,uniphier"
174 # QA jobs for code analytics
175 # static code analysis with cppcheck (we can add --enable=all later)
179 - cppcheck --force --quiet --inline-suppr .
180 # search for TODO within source tree
185 # search for FIXME within source tree
187 - JOB="grep FIXME HACK"
190 # search for HACK within source tree and ignore HACKKIT board
192 - grep -r HACK . | grep -v HACKKIT
193 # some statistics about the code base
201 - TEST_PY_BD="sandbox"
205 - TEST_PY_BD="vexpress_ca15_tc2"
206 TEST_PY_ID="--id qemu"
207 BUILDMAN="^vexpress_ca15_tc2$"
209 - TEST_PY_BD="vexpress_ca9x4"
210 TEST_PY_ID="--id qemu"
211 BUILDMAN="^vexpress_ca9x4$"
213 - TEST_PY_BD="integratorcp_cm926ejs"
214 TEST_PY_ID="--id qemu"
215 BUILDMAN="^integratorcp_cm926ejs$"
217 - TEST_PY_BD="qemu_mips"
218 TEST_PY_TEST_SPEC="not sleep"
219 BUILDMAN="^qemu_mips$"
222 - TEST_PY_BD="qemu_mipsel"
223 TEST_PY_TEST_SPEC="not sleep"
224 BUILDMAN="^qemu_mipsel$"
227 - TEST_PY_BD="qemu_mips64"
228 TEST_PY_TEST_SPEC="not sleep"
229 BUILDMAN="^qemu_mips64$"
232 - TEST_PY_BD="qemu_mips64el"
233 TEST_PY_TEST_SPEC="not sleep"
234 BUILDMAN="^qemu_mips64el$"
237 - TEST_PY_BD="qemu-ppce500"
238 TEST_PY_TEST_SPEC="not sleep"
239 BUILDMAN="^qemu-ppce500$"
241 - TEST_PY_BD="qemu-x86"
242 TEST_PY_TEST_SPEC="not sleep"
243 BUILDMAN="^qemu-x86$"
247 # TODO make it perfect ;-r