1 # SPDX-License-Identifier: GPL-2.0+
3 # Grab our configured image. The source for this is found at:
4 # https://gitlab.denx.de/u-boot/gitlab-ci-runner
5 image: trini/u-boot-gitlab-ci-runner:bionic-20200311-10Apr2020
7 # We run some tests in different order, to catch some failures quicker.
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
17 # Clone uboot-test-hooks
18 - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
19 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
20 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
21 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
23 - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
24 - cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi
25 - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
26 - cp /opt/grub/grubarm.efi ~/grub_arm.efi
29 - rm -rf /tmp/uboot-test-hooks /tmp/venv
31 # From buildman, exit code 129 means warnings only. If we've been asked to
32 # use clang only do one configuration.
33 - if [[ "${BUILDMAN}" != "" ]]; then
35 tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
36 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
37 tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN};
41 # "not a_test_which_does_not_exist" is a dummy -k parameter which will
42 # never prevent any test from running. That way, we can always pass
43 # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
45 - virtualenv -p /usr/bin/python3 /tmp/venv
46 - . /tmp/venv/bin/activate
47 - pip install -r test/py/requirements.txt
48 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/${TEST_PY_BD};
49 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
50 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
51 if [[ "${TEST_PY_BD}" != "" ]]; then
52 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
53 -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
54 --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
56 if [[ $ret -ne 0 ]]; then
61 build all 32bit ARM platforms:
66 ./tools/buildman/buildman -o /tmp -P -E arm -x aarch64 || ret=$?;
67 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
68 ./tools/buildman/buildman -o /tmp -sdeP;
72 build all 64bit ARM platforms:
76 - virtualenv -p /usr/bin/python3 /tmp/venv
77 - . /tmp/venv/bin/activate
78 - pip install pyelftools
80 ./tools/buildman/buildman -o /tmp -P -E aarch64 || ret=$?;
81 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
82 ./tools/buildman/buildman -o /tmp -sdeP;
86 build all PowerPC platforms:
91 ./tools/buildman/buildman -o /tmp -P -E powerpc || ret=$?;
92 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
93 ./tools/buildman/buildman -o /tmp -sdeP;
97 build all other platforms:
102 ./tools/buildman/buildman -o /tmp -P -E -x arm,powerpc || ret=$?;
103 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
104 ./tools/buildman/buildman -o /tmp -sdeP;
108 # QA jobs for code analytics
109 # static code analysis with cppcheck (we can add --enable=all later)
114 - cppcheck --force --quiet --inline-suppr .
116 # search for TODO within source tree
117 grep TODO/FIXME/HACK:
123 # search for HACK within source tree and ignore HACKKIT board
124 - grep -r HACK . | grep -v HACKKIT
126 # build HTML documentation
133 # some statistics about the code base
140 # ensure all configs have MAINTAINERS entries
141 Check for configs without MAINTAINERS entry:
145 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
147 # Ensure host tools build
152 - make tools-only_config tools-only -j$(nproc)
154 # Ensure env tools build
159 - make tools-only_config envtools -j$(nproc)
161 Run binman, buildman, dtoc, Kconfig and patman testsuites:
165 - git config --global user.name "GitLab CI Runner";
166 git config --global user.email trini@konsulko.com;
168 virtualenv -p /usr/bin/python3 /tmp/venv;
169 . /tmp/venv/bin/activate;
170 pip install pyelftools pytest;
171 export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/sandbox_spl;
172 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
173 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
174 ./tools/buildman/buildman -o /tmp -P sandbox_spl;
175 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
176 ./tools/buildman/buildman -t;
177 ./tools/dtoc/dtoc -t;
178 ./tools/patman/patman --test;
181 # Test sandbox with test.py
185 TEST_PY_BD: "sandbox"
186 BUILDMAN: "^sandbox$"
187 <<: *buildman_and_testpy_dfn
189 sandbox with clang test.py:
192 TEST_PY_BD: "sandbox"
193 BUILDMAN: "^sandbox$"
194 OVERRIDE: "-O clang-7"
195 <<: *buildman_and_testpy_dfn
200 TEST_PY_BD: "sandbox_spl"
201 BUILDMAN: "^sandbox_spl$"
202 TEST_PY_TEST_SPEC: "test_ofplatdata"
203 <<: *buildman_and_testpy_dfn
208 TEST_PY_BD: "evb-ast2500"
209 TEST_PY_ID: "--id qemu"
210 BUILDMAN: "^evb-ast2500$"
211 <<: *buildman_and_testpy_dfn
213 sandbox_flattree test.py:
216 TEST_PY_BD: "sandbox_flattree"
217 BUILDMAN: "^sandbox_flattree$"
218 <<: *buildman_and_testpy_dfn
220 vexpress_ca15_tc2 test.py:
223 TEST_PY_BD: "vexpress_ca15_tc2"
224 TEST_PY_ID: "--id qemu"
225 BUILDMAN: "^vexpress_ca15_tc2$"
226 <<: *buildman_and_testpy_dfn
228 vexpress_ca9x4 test.py:
231 TEST_PY_BD: "vexpress_ca9x4"
232 TEST_PY_ID: "--id qemu"
233 BUILDMAN: "^vexpress_ca9x4$"
234 <<: *buildman_and_testpy_dfn
236 integratorcp_cm926ejs test.py:
239 TEST_PY_BD: "integratorcp_cm926ejs"
240 TEST_PY_TEST_SPEC: "not sleep"
241 TEST_PY_ID: "--id qemu"
242 BUILDMAN: "^integratorcp_cm926ejs$"
243 <<: *buildman_and_testpy_dfn
248 TEST_PY_BD: "qemu_arm"
249 TEST_PY_TEST_SPEC: "not sleep"
250 BUILDMAN: "^qemu_arm$"
251 <<: *buildman_and_testpy_dfn
256 TEST_PY_BD: "qemu_arm64"
257 TEST_PY_TEST_SPEC: "not sleep"
258 BUILDMAN: "^qemu_arm64$"
259 <<: *buildman_and_testpy_dfn
264 TEST_PY_BD: "qemu_mips"
265 TEST_PY_TEST_SPEC: "not sleep"
266 BUILDMAN: "^qemu_mips$"
267 <<: *buildman_and_testpy_dfn
272 TEST_PY_BD: "qemu_mipsel"
273 TEST_PY_TEST_SPEC: "not sleep"
274 BUILDMAN: "^qemu_mipsel$"
275 <<: *buildman_and_testpy_dfn
280 TEST_PY_BD: "qemu_mips64"
281 TEST_PY_TEST_SPEC: "not sleep"
282 BUILDMAN: "^qemu_mips64$"
283 <<: *buildman_and_testpy_dfn
285 qemu_mips64el test.py:
288 TEST_PY_BD: "qemu_mips64el"
289 TEST_PY_TEST_SPEC: "not sleep"
290 BUILDMAN: "^qemu_mips64el$"
291 <<: *buildman_and_testpy_dfn
293 qemu-ppce500 test.py:
296 TEST_PY_BD: "qemu-ppce500"
297 TEST_PY_TEST_SPEC: "not sleep"
298 BUILDMAN: "^qemu-ppce500$"
299 <<: *buildman_and_testpy_dfn
301 qemu-riscv32 test.py:
304 TEST_PY_BD: "qemu-riscv32"
305 TEST_PY_TEST_SPEC: "not sleep"
306 BUILDMAN: "^qemu-riscv32$"
307 <<: *buildman_and_testpy_dfn
309 qemu-riscv64 test.py:
312 TEST_PY_BD: "qemu-riscv64"
313 TEST_PY_TEST_SPEC: "not sleep"
314 BUILDMAN: "^qemu-riscv64$"
315 <<: *buildman_and_testpy_dfn
320 TEST_PY_BD: "qemu-x86"
321 TEST_PY_TEST_SPEC: "not sleep"
322 BUILDMAN: "^qemu-x86$"
323 <<: *buildman_and_testpy_dfn
328 TEST_PY_BD: "qemu-x86_64"
329 TEST_PY_TEST_SPEC: "not sleep"
330 BUILDMAN: "^qemu-x86_64$"
331 <<: *buildman_and_testpy_dfn
333 xilinx_zynq_virt test.py:
336 TEST_PY_BD: "xilinx_zynq_virt"
337 TEST_PY_TEST_SPEC: "not sleep"
338 TEST_PY_ID: "--id qemu"
339 BUILDMAN: "^xilinx_zynq_virt$"
340 <<: *buildman_and_testpy_dfn
342 xilinx_versal_virt test.py:
345 TEST_PY_BD: "xilinx_versal_virt"
346 TEST_PY_TEST_SPEC: "not sleep"
347 TEST_PY_ID: "--id qemu"
348 BUILDMAN: "^xilinx_versal_virt$"
349 <<: *buildman_and_testpy_dfn
355 TEST_PY_TEST_SPEC: "not sleep"
356 TEST_PY_ID: "--id qemu"
358 <<: *buildman_and_testpy_dfn